Saved Bookmarks
| 1. |
Question 3what will be the output of the following code?int x=5, y=5,zX =***y=--y:7=tycout |
|
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 |
|