1.

What is the output of this C code? int main() { int i = 0; int j = i++ + i; printf("%d n", j); }

A. 1
B. 2
C. Compile time error
Answer» A. 1


Discussion

No Comment Found