1.

What will be the output of this program on an implementation where int occupies 2 bytes? #include void main() { int i = 3; int j; j = sizeof(++i + ++i); printf("i=%d j=%d", i, j); }

A. i=4 j=2
B. i=3 j=2
C. i=5 j=2
D. the behavior is undefined
Answer» C. i=5 j=2


Discussion

No Comment Found