✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
PART A:
Instructions: Answer all questions in this section. All correct answers give in total.
Right answers are marked with red color
1. What is the output of the following program?
#include<iostream>
using namespace std;
class abc {
void f();
void g();
int x;
};
main() {
cout<<sizeof(abc)<<endl;
}