C program to check a given number is prime or not using recursion
belongs to collection: C Programming Recursion Examples, Programs
All Answers
total answers (1)
belongs to collection: C Programming Recursion Examples, Programs
total answers (1)
Here, we will read an integer number from the user and then check the given number is a prime number or not using a recursive function.
Program:
The source code to check a given number is prime or not using recursion is given below. The given program is compiled and executed using GCC compile on UBUNTU 18.04 OS successfully.
Output:
Explanation:
In the above program, we created two functions checkPrime() and main() function. The checkPrime() function is a recursive function, which is used to check a given number is a prime number or not.
In the main() function, we read an integer number from the user and then check the given number is a prime number or not using the checkPrime() function and printed the result on the console screen.
need an explanation for this answer? contact us directly to get an explanation for this answer