1.

What will be the output of the given program?#includevoid main(){inti=10;printf("i=%d", i);{inti=20;printf("i=%d", i);i++;printf("i=%d", i);}printf("i=%d", i);}

A. 0 10 11 11
B. 0 20 21 21
C. 0 20 21 10
D. 0 20 21 20
Answer» D. 0 20 21 20


Discussion

No Comment Found