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