Check Number Is Palindrome Or Not
If the original value and its reversed value is same then it will called palindrome value. #include <iostream> using namespace std; int main() { int n, num, digit, rev = 0; cout << “Enter a positive integer number: “; cin >> num; n = num;… Read More »Check Number Is Palindrome Or Not