1.

What is the output of the following program segment? main() { int i = ++2; printf(“%d\n”, i); }

A. 3
B. 2
C. 0
D. -1
Answer» B. 2


Discussion

No Comment Found