Hi... I have a project for my college but unfortunately, I struggle in programming, apart from simple C programs. Anyway, the way I see it, I think the code I need should be around 20-30 lines, so if somebody can provide me some help I'll be really grateful. Here is the project:
A parent process will produce 10 random integer numbers (rand).
Then the parent process will produce (fork) 2 child processes.
The child processes will print their PID (getpid) and will sort (qsort, as ) the integer numbers, one in ascending order and the other in descending order.
The sorted tables will be printed to stdout with the use of write.
The parent process will standby (waitpid) until the child processes finish their execution.