Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在构建时遇到问题。我的错误是这样的:“test.c”错误:test.h 错误”
我有源代码:
#include <test.h>
如何在构建中添加它? 具体如何链接这个库?我可以通过 Geany 链接它吗? 操作系统 ubuntu + Geany 作为编译
请按照以下简单步骤操作:
创建一个目录并将您的test.c和test.h放在同一目录中。
test.c
test.h
在 C 源文件中,您应该编写:
#include "test.h"它将在当前目录中搜索头文件以及包含库路径,而不是#include <test.h>仅在包含库路径中搜索 test.h。
#include "test.h"