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