Multiple choice

Which of the following error messages is/are displayed to the user if the user improperly writes a header file in the above program? (Turbo C++)

#include"iostrem.h"
#include"conio.h"
void main()
{
cout<<"hi";
getch();
}

  1. Unable to open include file iosteam.h

  2. Undefined symbol cout

  3. Both (1) and (2)

  4. The program will compile and execute normally.

  5. It will give a warning to the user.

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Both errors are displayed in this program.