Vidyalelo
C++ Programming · Q561

C++ miscellaneous

Programming · C++ Programming · question 561

Q561

What will be the output of the following C++ code? #include using namespace std; class class0 public: virtual ~class0() protected: char p; public: char getChar(); ; class class1 : public class0 public: void printChar(); ; void class1::printChar() cout << "True" << endl; int main() class1 c; c.printChar(); return 1;

A.
True
Answer
B.
error
C.
no output
D.
runtime error

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board