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