int x=1,y=2,z=++x + ++y
x += y;
z +=y--;
Find the output with method
Answers
Answered by
0
Explanation:
int x=5,y=15;
x= x++ + ++y;
y = ++x + ++y;
printf("%d %d",x,y);
return 0;
}
Similar questions