forkdemo3.c

来自「understanding unix/linux programming sou」· C语言 代码 · 共 24 行

C
24
字号
/*  forkdemo3.c - shows how the return value from fork() *                allows a process to determine whether *                it is a child or process */#include	<stdio.h>main(){	int	fork_rv;	printf("Before: my pid is %d\n", getpid());	fork_rv = fork();		/* create new process	*/	if ( fork_rv == -1 )		/* check for error	*/		perror("fork");	else if ( fork_rv == 0 )		printf("I am the child.  my pid=%d\n", getpid());	else		printf("I am the parent. my child is %d\n", fork_rv);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?