My academic assignmentt
**
**Please help me in coding for this assignment
In Linux Ubuntu flavor, write a program in C language to do the following tasks.
1) Use fork ( ) system call to create a child process.
2) Child process should first take student name as input and then it should display student name that it takes
from user. At last, child process should display numbers from 0 to 5.
3) Parent process should first take Student ID as input and then it should display Student ID that it
takes from user. At last, parent process should display numbers from 6 to 10.
4) Output of the program should be like the one give below.
Enter Student Name: Mansoor Anwar
Student Name is: Mansoor Anwar
child: 0
child: 1
child: 2
child: 3
child: 4
child: 5
Enter Student ID: BC070651121
Student ID is: BC070651121
parent: 6
parent: 7
parent: 8
parent: 9
parent: 10
1) Do not write your program in other languages like Java, C++ etc. Write your program only in C language.
2) Do not execute your program in other operating systems like Windows, Mac etc. Execute your program only in Linux Ubuntu flavor.