#include <iostream>
using namespace std;
struct A {
A& operator++(int) {
cout << "++";
return *this;
}
A& operator--(int){
cout << "--";
return *this;
}
};
int main() {
A a;
a++--;
return 0;
}
Ввійдіть щоб вподобати
Ввійдіть щоб прокоментувати