用C语言写一个调用上面helloworld库的程序
时间: 2023-09-16 14:15:04 浏览: 84
总结提高-程序设计基础(C语言课件)
好的,以下是代码:
```c
#include <stdio.h>
#include "helloworld.h" // 包含 helloworld 库的头文件
int main() {
helloworld(); // 调用 helloworld() 函数
return 0;
}
```
请注意,这里假设您已经将 helloworld 库正确安装并设置好了头文件路径和链接库路径,否则您可能需要做一些其他配置。
阅读全文