Question: Write a Bourne Shell script named as prime.sh to check if a number is a prime or not. The number is from user's input. Sample

Write a Bourne Shell script named as "prime.sh" to check if a number is a prime or not. The number is from user's input. Sample output: $./prime.sh Enter a number :10 The number 10 is not a prime $./prime.sh Enter a number: 3 The number 3 is a prime Attach the source code and sample output of your "prime.sh" in the answer sheet. Upload "prime.sh" into icollege. Write a C program named as "prime.c" to finish the same task. Sample output: $cc -o prime prime.c $./prime Enter a number: 10 The number 10 is not a prime $./prime Enter a number: 3 The number 3 is a prime
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
