我必须创建一个程序:
- 要一个号码
- 创建子进程(使用 vfork)
- 计算平方根(在子进程中)
- 显示父进程的平方根
这是我的代码
#include <stdio.h>
#include <sys/types.h>
#include <math.h>
#include <unistd.h>
#include <stdlib.h>
int main(int argc, char **argv)
{
double n=0;
printf("Number: "); //ask number
scanf("%d", &n);
pid_t pid = vfork(); //create child process
if (pid==0)//if child process
{
printf("Child process started\n");
n = sqrt(n);//calculate square root
}
else//parent process
{
printf("Returnning to parent process\n");
printf("Square Root: %d",n);
}
return 0;
}
但是我的代码不起作用,有人可以帮助我吗?