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

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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!