Hello everyone. I tried running this code
#include <stdio.h>
#include <conio.h>
main()
{
int x, y;
x = 50;
y = 50;
gotoxy(x, y);
printf("This phrase got moved to %d, %d\n", x, y);
getch();
return 0;
}
and it is giving me "POLINK: error: Unresolved external symbol 'gotoxy'" and "POLINK: error: Unresolved external symbol 'getch'. Thanks for the help.