1.cutlery used for serving and eating food
2.the act of branching out or dividing into branches
3.a part of a forked or branching shape;
he broke off one of the branches
4.an agricultural tool used for lifting or digging; has a handle and metal prongs
5.the angle formed by the inner sides of the legs where they join the human trunk
1.lift with a pitchfork;
pitchfork hay
2.place under attack with one's own pieces, of two enemy pieces
3.divide into two or more branches so as to form a fork;
The road forks
4.shape like a fork;
She forked her fingers
fork()函数 Linux #include<unistd.h> #include<sys/types.h> 函数定义: pid_t fork( void); (pid_t 是一个宏定义,其实质是int 被定义在#include<sys/types.h>中) 返回值: 若成功调用一次则返回两个值,子进程返回0,父进程返回子进程ID;否则,出错返回-1 函数说明: 一个现有进程可以调用fork函数创建一个新进程。由fork创建的新进程被称为子进程(child process)。fork函数被调用一次但返回两次。两次