...
Code Block |
---|
int main(void) { int a = 14; int b = sizeof( a++ ); ... return 0; } |
The expression a++
is not evaluated. Consequently, side effects in the expression are not executed.
...
...
Code Block |
---|
int main(void) { int a = 14; int b = sizeof( a++ ); ... return 0; } |
The expression a++
is not evaluated. Consequently, side effects in the expression are not executed.
...