Q875
What will be the output of the following C++ code? #include #include using namespace std; int main () int * a; int b; a = 0; b = 0; if (typeid(a) != typeid(b)) cout << typeid(a).name(); cout << typeid(b).name(); return 0;
A.
Pi
B.
i
C.
Both pi & i
AnswerD.
f
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board