9 Implement the C program in which main program accepts the integers to be sorted. Main program uses the FORK system call to create a new process called a child process. Parent process sorts the integers using sorting algorithm and waits for child process using WAIT system call to sort the integers using any sorting algorithm. Also demonstrate zombie and orphan states. Atharva Satyendra Agrawal August 10, 2022 Add Comment Atharva Satyendra Agrawal Program: #include<stdio.h> void bubbleSort(int arr[],int n) { for(int i=0;i<n;i++) { for(int j=0;j<n-1;j++) ... Read More