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
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
English,
3 months ago
Computer Science,
8 months ago
Math,
8 months ago
English,
11 months ago
Biology,
11 months ago