Saved Bookmarks
| 1. |
Write a c program to check the wheather a given number is palindrome r not |
|
Answer» Explanation: Write AC PROGRAM to FIND whether a number is palindrome or notC program for palindrome number int main() { int n, reverse = 0, t; printf("ENTER a number to check if it is a palindrome or not\n"); scanf("%d", &n); t = n; while (t != 0) |
|