Question: Write a bash program called producer and a C program called consumer.c. A text-based data file called storage initially contains an integer number between 5
Write a bash program called producer and a C program called consumer.c. A text-based data file called storage initially contains an integer number between 5 and 90. The producer checks the number in the storage. If the current number plus 8 will be 100 or larger, it will terminate. Otherwise, it will increase the number in the storage by 8 and then call the consumer to continue. The consumer decreases the number in the storage by 3, and then calls the producer to continue. Both the producer and the consumer can be the starter. Sample runs:


assignment-producer more storage 80 from consumer: current total is 77 from producer current total is 85 from consumer: current total is 82 from producer: current total is 98 from consumer: current total is 87 from producer: current total is 95 from consumer: current total is 92 from producer: Now I will take a rest
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
