✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Яке значення буде виведене
class base{
int a;
float b;
};
class derived:public base{
int b1;
float b[6];
};
int main()
{
derived obj;
cout<<sizeof(obj);
return 0;
}
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!