1.

What is the output of this program?
#include 
using namespace std;
int main()
{
char *p;
char S[] = "interviewMania";
p = S;
p += 5;
cout << p;
return 0;
}

A. InterviewMania
B. Mania
C. Interview
D. viewMania
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs