C program to cheak if a number is a palandrome or not.
Here is a program to cheak if a number is a palandrome or not.
A word, sentence, verse, or even number that reads the same backward or forward.
#include<stdio.h>
int palandrome(int n);
int main(){
int n;
printf("Enter the number you want to f...
gagang.hashnode.dev1 min read