Examveda
Examveda

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

A. X is 97

B. X is 98

C. X is 99

D. Run time error

Answer: Option A


This Question Belongs to C Program >> C Fundamentals

Join The Discussion

Related Questions on C Fundamentals