What will be the output of the following C code?
#include void main() { int x = 97; int y = sizeof(x++); printf("x is %d", x); }
Answer: A
No answer description available for this question.