Program # 27: Program to pattern of stars till N number of rows //Program to print pattern of stars till N number of rows (Level - High) #include <iostream>…
Program # 26: Program to print Pascal Triangle Program to print Pascal Triangle(Level - High) #include<iostream> using namespace std; int main() { int h…
Program # 25: Program to sort array elements in Ascending Order //Program to sort array elements in Ascending Order (Level - Medium) #include <iostream> us…
Program # 24: Program to find out factors of given number //Program to find out the factors of given number(Level - Medium) #include <iostream.h> #include…
Program # 23: Program to display rectangle on screen //Program to display the rectangle on the screen(Level - Medium) #include <iostream.h> #include <…
Program # 22: Program to find out nth factorial of given number //Program to find the nth terms of its factorial(Level - Medium) #include <iostream.h> #in…
Program # 21: Program to find out exponent of given number //Program to find out the exponent of given number(Level - Medium) #include <iostream.h> #inclu…
Program # 20: Program to print colourful text //Program to display the text in different colors(Level - Medium) #include <iostream.h> #include <conio.h…
Program # 19: Program to perform multiple operations //Program to select an operation from list and display its results (Level - Medium) #include <iostream.h&…
Program # 18: Program to solve Arithmatic operation //Program to solve arithmetic operation(Level - Low) #include <iostream.h> #include <conio.h> …
Program # 17: Program to find out character is vowel or not //Program to find out the given character is vowel or not (Level - Low) #include <iostream.h> …
Program # 16: Program to add two integer numbers using function Program to add two integer numbers using function.(Level - Low) #include <iostream> using …
Program # 15: Program to check whether the number is prime or not. Program to check whether the number is prime or not. (Level - Low) #include <iostream> …
Program # 14: Program to convert lowercase character to uppercase and vice versa Program to convert lowercase character to uppercase and vice versa. (Level - Mediu…
Program # 13: Find factorial using loop. Program to find factorial using loop. (Level - Medium) #include <iostream> using namespace std; int main() { in…
Program # 12: find sum of digits until the number is a single digit Program to find sum of digits until the number is a single digit.(Level- Medium) #include <…
Program # 11: Game: Find out the Hidden Number //Program to find out the number which computer has chosen randomly(Level- Medium) Can use it as a GAME #include &…
Program # 10: Greater number from given Numbers //Program to find out the greater number from given numbers(Level - Low) #include <iostream.h> #include &…
Program # 9: Reverse a Number //Program to display the reverse of given number(Level-Low) #include <iostream.h> #include <conio.h> void main ()…
Program # 8: Swap two Numbers //Program to swap the two numbers by using third variable(Level - Low) #include <iostream.h> #include <conio.h> void…
Program # 7: Table of Number entered //Program to display the table of given number(Level - Medium) #include <iostream.h> #include <conio.h> void …
Program # 6: Find out the smaller Number //Program to find out the smaller number from given numbers (Level - Low) #include <iostream.h> #include <c…
Program # 5: Find out the Grade //Program to find out the grade of given marks (Level - Low) #include <iostream.h> #include <conio.h> void main ()…