1.

What will be the output of the program? #include<stdio.h> int main() { const int i=0; printf("%d n", i++); return 0; }

A. 10
B. 11
C. No output
D. Error: ++needs a value
Answer» E.


Discussion

No Comment Found