gpt4 book ai didi

从 C 程序编译和构建 C 文件

转载 作者:行者123 更新时间:2023-11-30 21:24:00 26 4
gpt4 key购买 nike

我想知道是否可以编译和构建并最终从另一个 C 文件运行一个 C 文件(这个 C 文件最终将是一个系统调用文件)。

...
// Calling gcc(?) or something to compile and build the executable
/* running the executable */
// Executable ends and return to this file
...

是否有任何 C 函数可以做到这一点?

最佳答案

您可以使用头文件stdlib.h给出的system()函数,如下所示:

#include <stdlib.h>

int main()
{
system("gcc cprog.c -o cprog");
return 0;
}

您可以在此处看到我正在编译一个名为 cprog.c 的文件。

关于从 C 程序编译和构建 C 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39782284/

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