int x = 97; int y = sizeof(x++);
printf("Value of x = %d", x);
Output: 97 I am expecting 98 but answer is 97.
Anybody can explain?
int x = 97; int y = sizeof(x++);
printf("Value of x = %d", x);
Output: 97 I am expecting 98 but answer is 97.
Anybody can explain?