1.

Find the output of the following “C” code:Main ( ){ int x = 20, y = 35;x = y++ + x++;y = ++y + ++x;printf (“%d, %d\n”, x, y);}

A. 55, 93
B. 53, 97
C. 56, 95
D. 57, 94
Answer» E.


Discussion

No Comment Found