gpt4 book ai didi

c - 在 C 程序中包含源文件

转载 作者:行者123 更新时间:2023-12-04 12:35:17 24 4
gpt4 key购买 nike

如何在这个小程序中包含 foo.c 的 foo() 函数(抱歉我的菜鸟问题):

在我的 foo.h 文件中:

/* foo.h */
#include <stdio.h>
#include <stdlib.h>

int foo(double largeur);

在 foo.c 中:

/* foo.c */
#include <stdio.h>
#include <stdlib.h>
#include "foo.h"

int foo(double largeur)
{
printf("foo");
return 0;
}

在 main.c 中:

/* main.c */
#include <stdio.h>
#include <stdlib.h>
#include "foo.h"

int main(int argc, char *argv[])
{
printf("Avant...");
foo(2);
printf("Apres...");
return 0;
}

编译后:

$ gcc -Wall -o main main.c

我收到这个错误:

Undefined symbols: "_foo", referenced from: _main in ccerSyBF.o ld: symbol(s) not found collect2: ld returned 1 exit status

感谢您的帮助。

最佳答案

$ gcc -Wall -o main main.c foo.c

如果你不告诉它 GCC 不知道去寻找 foo.c :)

关于c - 在 C 程序中包含源文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1627871/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com