#include <stdio.h> int main (void) { int x = 1; int y = x++; printf( "y=%d\n", y ); int z = ++x; printf( "z=%d\n", z ); return 0; }