Write a program to reverse an integer in C.
Write a program in C to check whether an integer is Armstrong number or not.
Write a program in C to check given number is prime or not.
Write a program in C to print the Fibonacci series using iteration.
Write a program in C to print the Fibonacci series using recursion.
Write a program in C to check whether a number is palindrome or not using iteration.
Write a program in C to check whether a number is palindrome or not using recursion.
Write a program in C to find greatest among three integers.
Write a program in C to check if a number is binary.
Write a program in C to find sum of digits of a number using recursion.
Write a program in C to swap two numbers without using third variable.
Write a program in C to swap two numbers using third variable.
Write a program in C to find prime factors of a given integer.
Write a program in C to add two integer without using arithmetic + operator.
Write a program in C to check given number is perfect or not.
C Program to find the Average of numbers with explanations.
C Program to calculate factorial using iterative method.
C Program to calculate factorial using recursion.
C Program to check a given number is even or odd.
C program to print first n Prime Number with explanation.
C Program to print Prime Number in a given range
C Program to find Smallest number among three.
C program to calculate the power using the POW method.
C Program to calculate the power without using POW function.
C Program to calculate the square of a given number.
C Program to calculate the cube of a given number