Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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.

...