0
Write the output
#include<iostream> using namespace std; void main() { int x=5,y=5; cout<<x--; cout<<","; cout<<--x; cout<<", "; cout<<y--<<", "<<--y } getch();
2 Respostas
+ 2
5,3,5,3
(getch out of main should do an error)
0
But the answer is : 5,3,4,4