1.

The following three ‘C’ language statements is equivalent to which single statement?y = y + 1;z = x + y;x = x + 1;

A. z = x + y + 2;
B. z = (x++) + (++y);
C. z = (++x) + (y++);
D. z = (x++) + (++y) + 1;
Answer» C. z = (++x) + (y++);


Discussion

No Comment Found