Will
Code:
int i = 10000000;
i++;
take more time to process than
Code:
int i = 0;
i++;
?