Question: Write a c/c++ program that forks five processes from the same parent. The first process should find the prime numbers in the range 2-2000 and
Write a c/c++ program that forks five processes from the same parent. The first process should find the prime numbers in the range 2-2000 and save them in a file named primes_2_2000.txt. The second process should find the prime numbers in the range 2001-4000 and save them in a file named primes_2001_4000.txt. The third process should find the prime numbers in the range 4001-6000 and save them in a file named primes_4001_6000.txt. The fourth process should find the prime numbers in the range 6001-8000 and save them in a file named primes_6001_8000.txt. The fifth process should find the prime numbers in the range 6001-8000 and save them in a file named primes_8001_10000.txt. The parent process should wait for the children to terminate.
Step by Step Solution
3.57 Rating (171 Votes )
There are 3 Steps involved in it
Certainly To solve the problem well write a CC program that u... View full answer
Get step-by-step solutions from verified subject matter experts
