Computer Science, asked by crdubey09, 8 hours ago

int x=1,y=2,z=++x + ++y
x += y;
z +=y--;
Find the output with method​

Answers

Answered by rohanjha98521
0

Explanation:

int x=5,y=15;

x= x++ + ++y;

y = ++x + ++y;

printf("%d %d",x,y);

return 0;

}

Similar questions