I had my first “Revision Test” at school from 21st to 25th. What a relief it is to finish ‘em. I have successfully messed up every subject other than English. Even Computer Science
I hadn’t ever used inheritance (in C++). So messed up a 4 mark question. And then, this output question
Q. Write the output for the following code:
int x=5, y=5;
cout << x--;
cout << ", ";
cout << --x;
cout << "\n";
cout << y-- << ", " << --y;




