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?Optionsa) bb) ac) Compilation errord) No outputAnswer : a) b