Predict the output of following program?


			  		

Loading

Choose the correct option.

Predict the output of following program?

#include
using namespace std;

class Base {
private:
int i, j;
public:
Base(int _i = 0, int _j = 0): i(_i), j(_j) { }
};
class Derived: public Base {
public:
void show(){
cout<<" i = "<A. Compiler Error: i and j are private in Base
B. i = 0  j = 0
C. Compiler Error: Could not call constructor of Base
D. None of the above