1 /* The body can include C expressions with ++ and -- */
2 a = x++;
3 b = ++x;
4 c = x--;
5 d = --x;
6 /* But these are not legal in preprocessor expressions. */
7 #if x++ > 4
8 #endif
9