What will be the output of the
following C code?
#include <stdio.h>
void main()
int x=97;
int y = sizeof(x++);
printf("X is %d", x);
}
X is 98
Run time error
X is 99
O X is 97
Answers
Answered by
3
Answer:
x =98 then increase by 1 numeric value, so result of x is 99
Similar questions