Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
5564 serge 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