gpt4 book ai didi

c - 程序中有什么错误?

转载 作者:太空宇宙 更新时间:2023-11-04 01:25:27 25 4
gpt4 key购买 nike

我用 C 语言编写了这个基础 fork 程序。但是编译器向我发出错误。代码是

#include<stdio.h>
#include<sys/stat.h>
#include<ctype.h>

void childProcess(){
printf("From child process with process id %d\n", getpid());
}


void parentProcess(){
printf("Parent Process with id %d\n", getpid());
pid_t pid = fork();
if (pid == 0){
childProcess();
} else if (pid > 0){
printf("Parent spawned process %d\n", pid);
} else{
printf("Forking isn't supported!\n");
}

}

int main(){
parentProcess();

}

错误是

C:\Users\ADMINI~1\AppData\Local\Temp\ccORJc6N.o forking.c:(.text+0x3e): undefined reference to `fork'

最佳答案

您正在使用 Windows,看起来您不能在 Windows 上执行此操作。以下是一些相关的帖子:

当谷歌搜索你的错误时,这些是前三个链接:undefined reference to `fork'

关于c - 程序中有什么错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32108883/

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