In VS 2008, I created an empty project in VC ++ and added the source file as.,
`
#include<stdio.h>
#include<conio.h>
int main()
{
....
clrscr();
.....
return 0;
}
`
I get these errors / warnings:
Warning 1 warning C4013: 'clrscr' undefined; assuming extern returns int c: \ tc \ toh.c 170 TOH
Error 3 of error LNK2019: unresolved external symbol _clrscr referenced by function _main TOH.obj TOH
What is the problem?
Thanks in advance.
source
share