1.

What will be the output of the program? #include int main() { int i=2; int j = i + (1, 2, 3, 4, 5); printf("%d\n", j); return 0; }

A. 4
B. 7
C. 6
D. 5
Answer» C. 6


Discussion

No Comment Found