Vidyalelo
C++ Programming · Q812

C++ miscellaneous

Programming · C++ Programming · question 812

Q812

What will be the output of the following C++ code? #include #include using namespace std; class A public: virtual ~A(); ; int main() A* a = NULL; try cout << typeid(*a).name() << endl; catch (bad_typeid) cout << "Object is NULL" << endl;

A.
int
B.
float
C.
double
D.
object is NULL
Answer

Answer: Option D

Solution

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