Computer Science, asked by intotheunknown99, 5 months ago

Write a program to accept a number and check whether the number is
palindrome or not by using the function name (int n). The function returns
the reversed number to the main program that checks the palindrome
number​

Answers

Answered by mkprasanna15
0

Answer:

c++ program to check whethera Number is Palindrome or Not

This program reverses an integer (entered by the user) using while loop. Then, if statement is used to check whether the reversed number is equal to the original number or not.

Similar questions