By chiru chiruJune 6, 2021 Welcome to your Oops Quesions Name Email Phone College Name Solve #includeusing namespace std;class abc { void f();void g();int x;};main() {cout<<sizeof(abc)<<endl;} 20 #include using namespace std;int main (){int x, y;x = 5;y = ++x * ++x;cout << x << y;x = 5;y = x++ * ++x;cout << x << y;return 0;} Time's upTime is Up!