C Programming
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);}

c=3 d=5
c=5 d=3
c=3 d=3
c=5 d=5

ANSWER DOWNLOAD EXAMIANS APP