Write a C Program to create two child processes and examine the output.
int main() { printf("hello \n"); fork(); printf("Hi after 1st fork \n"); fork(); printf("hello hi after 2nd fork \n"); } Output: [04mca8@LINTEL 04mca8]$ ./a.out hello Hi after 1st fork hello hi after 2nd fork hello hi after 2nd fork Hi after 1st fork hello hi after 2nd fork hello hi after 2nd fork