- Program to print all natural numbers from 1 to n
- Program to print all natural numbers in reverse (from n to 1)
- Program to print all alphabets from a to z
- Program to print all even numbers between 1 to 100
- Program to print all odd number between 1 to 100
- Program to find sum of all natural numbers between 1 to n
- Program to find sum of all even numbers between 1 to n
- Program to find sum of all odd numbers between 1 to n
- Program to print multiplication table of any number
- Program to count number of digits in a number
- Program to find first and last digit of a number
- Program to swap first and last digits of a number
- Program to calculate sum of digits of a number
- Program to calculate product of digits of a number
- Program to enter a number and print its reverse
- Program to check whether a number is palindrome or not
- Program to find frequency of each digit in a given integer - using a map
- Program to find frequency of each digit in a given integer - using an arrray
- Program to enter a number and print it in words
- Program to print all ASCII character with their values
- Program to find power of a number
- Program to find all factors of a number
- Program to calculate factorial of a number
- Program to find HCF (GCD) of two numbers
- Program to find LCM of two numbers
- Program to check whether a number is Prime number or not
- Program to print all Prime numbers between 1 to 100
- Program to find all prime factors of a number
- Program to check whether a number is Armstrong number or not
- Program to print all Armstrong numbers between 1 to n (TO BE WRITTEN)
- Program to check whether a number is Perfect number or not
- Program to print all Perfect numbers between 1 to n (TO BE WRITTEN)
- Program to check whether a number is Strong number or not
- Program to print all Strong numbers between 1 to n (TO BE WRITTEN)
-
Program to print Fibonacci series up to n terms
-
Program to find one's complement of a binary number
-
Program to find two's complement of a binary number
-
Program to convert Binary to Octal number system
-
Program to convert Binary to Decimal number system
-
Program to convert Binary to Hexadecimal number system
-
Program to convert Octal to Binary number system
-
Program to convert Octal to Decimal number system
-
Program to convert Octal to Hexadecimal number system
-
Program to convert Decimal to Binary number system
-
Program to convert Decimal to Octal number system
-
Program to convert Decimal to Hexadecimal number system
-
Program to convert Hexadecimal to Binary number system
-
Program to convert Hexadecimal to Octal number system
-
Program to convert Hexadecimal to Decimal number system
-
Program to print Pascal triangle upto n rows