Latest C Aptitude Question SOLUTION: On a machine where pointers are 4 bytes long, what happens when the following code is executed. main() { int x=0,*p=0; x++; p++; printf (\"%d and %d\\n\",x,p); } a) 1 and 1 is prin