Report Bug
Qus :

What will be the output of the following code segment?

int x = 24, y = 39, z = 45;
z = x + y;
y = z - y;
x = z - y;
printf("\n%d %d %d", x, y, z);

Qus



A. 24 39 63
B. 39 24 63
C. 24 39 45
D. 39 24 45


Solution
B. 39 24 63






Report Bug