MCQOPTIONS
 Saved Bookmarks
				| 1. | 
                                    What is the output of this C code? void main() { int x = 97; int y = sizeof(x++); printf("X is %d", x); } | 
                            
| A. | X is 97 | 
| B. | X is 98 | 
| C. | X is 99 | 
| D. | Run time error | 
| Answer» B. X is 98 | |