What is the output of the following C++ code?
#include using namespace std;class A{public:A(int n ){cout <>}};class B: public A{public:B(int n, double d): A(n){cout <>}};class C: public B{public:C(int n, double d, char ch): B(n, d){cout <>}};int main(){C c(5, 4.3, 'R');return 0;}
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here