1.

What is the output of this C code? void main() { char a = 'a'; int x = (a )++; printf("%d n", x); }

A. 6
B. Junk value
C. Compile time error
D. 7
Answer» D. 7


Discussion

No Comment Found