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();

1st Mar 2017, 7:02 AM
Abdul Khan
2 Respostas
+ 2
5,3,5,3 (getch out of main should do an error)
1st Mar 2017, 7:28 AM
Baptiste E. Prunier
Baptiste E. Prunier - avatar
0
But the answer is : 5,3,4,4
1st Mar 2017, 12:32 PM
Abdul Khan