Computer Science, asked by arwakhan38, 6 months ago

Question 3
what will be the output of the following code?
int x=5, y=5,z
X =***
y=--y:
7=ty
cout <Z​

Answers

Answered by harshaag0332
1

Answer:

int main()

{

int x=5,y=15;

x= x++ + ++y;

y = ++x + ++y;

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

return 0;

}

Explanation:

output would be like this

please mark me brainliest

Similar questions