1.

What is the output of this program?
#include 
using namespace std;
int main()
{
char ch = 'M';

cout<< ch;
return 0;
}

A. Compilation Error
B. Runtime Error
C. M
D. All of above
E. None of these
Answer» D. All of above


Discussion

No Comment Found

Related MCQs