WAP to check whether the given number is a prime number or not
Write a program to check whether the given number is a prime number or not using recursive function Output Enter an integer: 5count = 15 …
Write a program to check whether the given number is a prime number or not using recursive function Output Enter an integer: 5count = 15 …
Write a program to calculate the HCF of two number using recursive function Output HCF: 10
Write a program to print the Fibonacci series up to nth term using recursive function Output Enter term: 50 1 1 2 3
Write a program to calculate the Factorial of a given number using recursive function Output Enter any number: 4Factorial of 4 = 24
Write a program to Sum of numbers up to nth term Output Enter any number: 5Sum = 15