1.

What is the output of this program?
#include 
using namespace std;
int main()
{
int *ptr;
void *vptr;
if (vptr == ptr)
{
cout << "Interview Mania";
}
return 0;
}

A. Interview Mania
B. Compilation Error
C. Runtime Error
D. Garbage value
E. None of these
Answer» B. Compilation Error


Discussion

No Comment Found

Related MCQs