问题描述
- codeblock下ntohs函数编译失败
-
#include
#include
#include#pragma comment(lib,"ws2_32.lib")
#define PORT 0x1234int main()
{
printf("Hello world!n");
unsigned int n;
n = htons(PORT);
printf("%xn",n);
return 0;
}以上是出错的代码。
编译结果为:E:codeBlockscB_projectcprojectsntohsTestmain.c|11|undefined reference to `_imp__htons@4'|
这个错误网上说是ws2_32.lib这个库没加,照着加在“设置-》编译器”里了,并没有矫正这个错误,请问各位这个如何解决?
在此谢过!
解决方案
是不是没加库所在的目录?
参考:http://blog.csdn.net/huyoo/article/details/44732121
时间: 2024-12-23 18:13:16