Halo all,
I was just using a simple example of gotoxy function.
Code:
#include <stdio.h>
#include <conio.h>
int main(void)
{
printf("Here\n");
gotoxy(35,12);
printf("There\n");
}
But getting errors and warning as this.
Code:
Warning	1	warning C4013: 'gotoxy' undefined; assuming extern returning int	
Error	2	error LNK2019: unresolved external symbol _gotoxy referenced in function _main
Error	3	fatal error LNK1120: 1 unresolved externals
When I right clicked gotoxy and chose "Go to definition", I get this message
The symbol "gotoxy" is not defined.
What's wrong with it? Somebody please help.
Thanks