1 – Best Python program to check Armstrong Number
Python program to check Armstrong number : For a given number if the sum of digits each raised to the power of number of digits then the it is Armstrong number.
Let's sail across an ocean of IT
Python program to check Armstrong number : For a given number if the sum of digits each raised to the power of number of digits then the it is Armstrong number.
C program to reverse a number : This program is similar to palindrome number. We perform same steps on number and revers the order of number e.g. 1234 will 4321
C program to print Fibonacci series : Fibonacci series is a sequence of number in which each number is sum of its previous two number e.g. 1, 2, 3, 5, 8, 13, 21
C program to check prime number : prime number is a number which is only divisible by itself or by one. Program will help to understand the logic to check prime
C program to check Palindrome Number; this code is to check if given number is palindrome. palindrome means it is same even if we read backward eg. 121, 12521.
C program to find sum of all digits, this program will help freshers to improve their logic and with their interviews. Find sum of digits in c program is easy.
C program for leap year, understand easy and simple logic to solve leap year problem by C programming. It is pure mathematical problem with easy solution.