1.

What will be the output of the following program? void main() { int a, b, c, d; a = 3; b = 5; c = a, b; d = (a, b); printf("c=%d d=%d", c, d); }

A. c=3 d=3
B. c=3 d=5
C. c=5 d=3
D. c=5 d=5
Answer» C. c=5 d=3


Discussion

No Comment Found