Question: Write a C program that does not use a do while, while or for loop. The program will enter any number between 2 and INT

Write a C program that does not use a do while, while or for loop. The program will
enter any number between 2 and INT_MAX from the user. The program will output if
the number entered was PRIME or NOT PRIME.
Example Run:
Please enter a number between 2 and 2147483647: 7
The number 7 is a prime number.
Example Run
Please enter a number between 2 and 2147483647: 2
The number 2 is a prime number.
Please enter a number between 2 and 2147483647: 77
The number 77 is NOT a prime number.
RULES:
You are not permitted to use the following commands:
while
do while
for
goto (by the way, you are NEVER ALLOWED TO USE goto)
There is another way to do a loop in C, Java, C++ and other programs

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!