| | Consider the following code snippet:
char *a,b; if(typeid(a)==typeid(b)) cout<<"a"; else cout<<"b";
What will be the output of the above code?
Options
a) b b) a c) Compilation error d) No output
Answer : a) b | Posted By:Shruti Sharma Posted On: Dec 15 |
|