q) void main()
int x=5,y=5;
cout<<x++<<",";
cout<<--X<<",";
cout<<y++<<","<<--y;
getch();
Answers
Answered by
1
Answer:
There is no print statement here.... Then there will be no output...
} is missing is the program
Similar questions