Write a program in C language and run it in Linux environment that displays the
ID: 3632183 • Letter: W
Question
Write a program in C language and run it in Linux environment that displays the following results:
1. Display the Process ID of the Parent processes
2. Then execute a fork() call
3. If call is successful on fork( ) execution then display the process identifierof the Child process which returned to the Parent process Or Display theProcess ID of Child process
4. Show that Process ID of the Parent process does not change before andafter fork() call.
5. Child process display a message “I AM CHILD PROCESS”
6. Parent process display a message “I AM PARENT PROCESS”