1.

What is the output of this program?
#include 
using namespace std;
int main()
{
char str[20] = "Interview Mania";
cout << str[10];
cout < return 0;
}

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


Discussion

No Comment Found

Related MCQs