What will be the output of following program?


			  		

Loading

โœช Choose the correct option.

What will be the output of following program?

#include
using namespace std;

class base {
int arr[10];
};

class b1: public base { };

class b2: public base { };

class derived: public b1, public b2 {};

int main(void)
{
cout << sizeof(derived);
return 0;
}

A. 0
B. 4
C. 40
D. 80