What does this code print?
int i = 0; printf("%d", i++); printf("%d", i--); printf("%d", ++i); printf("%d", --i);
1,0,1,0
0,0,1,0
0,1,0,1
0,1,1,0