1.

         Note:Includes all required header files using namespace std;    int main ()    {        char fine, course;        cout << "Enter a word: ";        fine = cin.get();        cin.sync();        course = cin.get();        cout << fine << endl;        cout << course << endl;        return 0;    }
13.What is the output of this program?

A. Done
B. Error
C. Runtime error
D. None of the mentioned
Answer» C. Runtime error


Discussion

No Comment Found

Related MCQs