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.
我有一个项目,其中包括两个源文件和一个头文件(其中包含在名为 的源文件之一中定义的函数的原型Get.c),问题是:
Get.c
当我将 包含Get.c在另一个源文件中时,它给了我错误
error : Get.c: No such file or directory ?,即使我将所有三个文件都放在一个目录中。---我使用 dev-cpp - 。
error : Get.c: No such file or directory ?
在 C 中,您应该包含接口文件(.h 文件),而不是 C 源文件(.c 文件)。为您的模块创建一个接口并分别包含它。