fork1#

fork1.c

#include <stdio.h>

int main()
{
    int pid;
    pid = fork();
    printf("%d \n",pid);
}