/* postVsPre-fix.c * CS201 - by RA */ #include int main(void) { int myInt=0; printf("\n\nCurrent value of myInt is %d\n", myInt); printf("Value of myInt when printf(myIint++) is %d\n", myInt++); printf("Current value of myInt is %d\n", myInt); printf("Value of myInt when printf(++myInt) is %d\n", ++myInt); printf("Current value of myInt is %d\n\n", myInt); exit(0); }