Neeraj Mishra

A crazy computer and programming lover. He spend most of his time in programming, blogging and helping other programming geeks.

Palindrome Number in C++

Here you will get a C++ program to check whether a number is a palindrome or not. A number is a palindrome if it is equal to its reverse. For example, 121 is a palindrome because if we reverse the order of digits then the number so obtained is equal to the original number. Output: …

Palindrome Number in C++ Read More »

Find Divisors of a Number C++

Below is the C++ program to find all the divisors of a number. A divisor is a number that divides another number completely. For example, D is the divisor of N if N%D=0. Output: Enter the number: 6Divisors of 6 are 1 2 3 6