Someone help/direct me to understand where I have made the below errors from the build report?
#include <iostream>
using namespace std;
int main()
{
}
void "welcome_screen"()
{
clrscr();
textcolor(RED);
gotoxy(10,10);
cout<<"**************** W E L C O M E *********************** ";
gotoxy(15,12);
cout<<"*** T O M A N C H E S T E R U N I T E D *** " ;
gotoxy(10,14);
textcolor(RED);
cout<<"******* C L U B M A N A G E M E N T ******* ";
gotoxy(28,16);
textcolor(RED);
gotoxy(10,20);
cout<<"";
textcolor(RED+BLINK);
gotoxy(20,30);
cout<<" *** PRESS ANY KEY TO CONTINUE***";
getch();
return 0;
}
Compiling: Untitled1.c
C:\Users\***\Downloads\Main project\Untitled1.c:1:20: error: iostream: No such file or directory
C:\Users\***\Downloads\Main project\Untitled1.c:3: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'namespace'
C:\Users\***\Downloads\Main project\Untitled1.c:9: error: expected identifier or '(' before string constant
Process terminated with status 1 (0 minutes, 0 seconds)
3 errors, 0 warnings