Skip to content

Latest commit

 

History

History
22 lines (22 loc) · 1.69 KB

File metadata and controls

22 lines (22 loc) · 1.69 KB

List of function and recursion programming exercises

  • Write a C program to find cube of any number using function.
  • Write a C program to find diameter, circumference and area of circle using functions.
  • Write a C program to find maximum and minimum between two numbers using functions.
  • Write a C program to check whether a number is even or odd using functions.
  • Write a C program to check whether a number is prime, Armstrong or perfect number using functions.
  • Write a C program to find all prime numbers between given interval using functions.
  • Write a C program to print all strong numbers between given interval using functions.
  • Write a C program to print all Armstrong numbers between given interval using functions.
  • Write a C program to print all perfect numbers between given interval using functions.
  • Write a C program to find power of any number using recursion.
  • Write a C program to print all natural numbers between 1 to n using recursion.
  • Write a C program to print all even or odd numbers in given range using recursion.
  • Write a C program to find sum of all natural numbers between 1 to n using recursion.
  • Write a C program to find sum of all even or odd numbers in given range using recursion.
  • Write a C program to find reverse of any number using recursion.
  • Write a C program to check whether a number is palindrome or not using recursion.
  • Write a C program to find sum of digits of a given number using recursion.
  • Write a C program to find factorial of any number using recursion.
  • Write a C program to generate nth Fibonacci term using recursion.
  • Write a C program to find GCD (HCF) of two numbers using recursion.
  • Write a C program to find LCM of two numbers using recursion.