用dev-c++4.9.9.2编HELLO WORLD #include<stdio.h> int main() { prinft("hello world!") }

为什么出现linker error??
2025-01-04 01:28:14
推荐回答(2个)
回答1:

你试一试加上
#pragma comment(lib, "libname ")

或者重新编译后运行

回答2:

#include
int main()
{
prinft("hello world!");
return 0;
}
看着没什么问题,加一个return0;试试吧