C++ program to Input a Number and Check Whether it is Palindrome or Not. The number become palindrome when the number and reverse are same.
Posts published in “C++”
In this C++ Program, we find factorial of a number without recursion and with recursion and function. Both For loop and while loop codes are included.
Here we give 10 numbers as height of student and the c++ is to find average height of 10 students with using array and wihout using an array.
In this C++ programming we find Sum of Square of First N Natural Numbers without using any formula and uses normal for loop with sum calculation method.
C++ program to Check Whether the Given Character is a Vowel or Consonant in both switch case and else if statement with considering and capital and small letters
Length of a string in C++ is a common question in C++ exam or interview. You can find the length of a given using inbuilt system function (strlen) or using manual codes.
Learning and reciting multiplication table is always crazy. Here let’s create a multiplication table having 12 rows using C++ programming.
the program accept an integer number and calculate the individual digits and display the sum on the screen.
This tutorial we accept a number between 0 and 9 and the C++ program converts the input number into its corresponding English word
Simple three different solution to find biggest number among given three numbers using C++ program with sample output and explanation.