#include<stdio.h> #include<unistd.h> int main() { pid_t pid; pid = fork(); if(pid==0) { printf("\nIF IS RUNNING\n"); } else { printf("\nELSE IS...
Separate names with a comma.