我使用时,我的代码无法正确编译:
system("gcc -o filename temp.c");
我正进入(状态:
implicit declaration of function system
我不确定缺少什么,因为它只会在gcc调用上抛出系统错误.
这是我的代码:
#include <stdio.h>
int main() {
        ...
        system("gcc -o filename temp.c");
        return 0;
}