Please, someone explain me why when I compile this code in Dev-C++ (Windows OS) the following error message apears: 'clrscr' undeclared (first use this function)
int main()
{ int c;
char d;
clrscr();
printf(" Example program for PSC232 \n");
setup();
printf("*IDN?\n\r");
send("*IDN?\n");
printf("RECEIVE...\n\r");
loop:
receive();
goto loop;
}
ps: ignore the functions setup, send and receive