What will be the output of the following C++ code?
#include <iostream>
#include <typeinfo>
using namespace std;
class A
{
};
int main()
{
char c; float x;
if (typeid(c) != typeid(x))
cout << typeid(c).name() << endl;
cout << typeid(A).name();
return 0;
}
#include <iostream>
#include <typeinfo>
using namespace std;
class A
{
};
int main()
{
char c; float x;
if (typeid(c) != typeid(x))
cout << typeid(c).name() << endl;
cout << typeid(A).name();
return 0;
}A. c
1A
B. x
C. Both c & x
D. c
Answer: Option A

Join The Discussion