最近写一个程序,里面有涉及光标的移动,在课本的后面发现在conio.h中有个gotoxy函数刚好符合我的要求,于是就写了个简单的代码测试了一下。
#include <stdio.h>
#include <conio.h>
int main(int argc,char *argv[])
{
gotoxy(5,5);
printf("hello!\n");
return 0;
}
然而并没有什么卵用。
编译是过了,链接的的时候就报错了:
——————–Configuration: 1 - Win32 Debug——————–
Linking…
1.obj : error LNK2001: unresolved external symbol _gotoxy
Debug/1.exe : fatal error LNK1120: 1 unresolved externals