Vidyalelo
C Programming · Q113

C Fundamentals

Programming · C Programming · question 113

Q113

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);

A.
X is 97
Answer
B.
X is 98
C.
X is 99
D.
Run time error

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board