w3ajay

tally tutorial point, ms word 2013, ms excel 2013, ms powerpoint 2010,ccc question with answer in hindi 2021, Tally Prime in hindi , tally prime,Python,in python,programming in python,python

Saturday, January 4, 2020

C program for check Palindrome number

Palindrome number in c: A palindrome number is a number that is same after reverse. For example 121, 34543, 343, 131, 48984 are the palindrome numbers.


  1. #include<stdio.h>  
  2. #include<conio.h>
  3. void main()    
  4. {    
  5. int n,r,sum=0,temp; 
  6. clrscr();   
  7. printf("enter the number=");    
  8. scanf("%d",&n);    
  9. temp=n;    
  10. while(n>0)    
  11. {    
  12. r=n%10;    
  13. sum=(sum*10)+r;    
  14. n=n/10;    
  15. }    
  16. if(temp==sum)    
  17. printf("palindrome number ");    
  18. else    
  19. printf("not palindrome");   
  20. getch();  
  21. }   
  22. दोस्तों अगर आपको मेरी यह पोस्ट अच्छी लगी हो तो 
          प्लीज  like , share ,कमेंटसब्सक्राइब   जरुर करे जिससे हम आपके 
                लिए ऐसे ही अच्छे से अच्छे पोस्ट लाते  रहे 
    अगर आपके पास कोई प्रश्न हो तो कमेंट बॉक्स में उस प्रश्न जरुर लिखे 


                  धन्यवाद !

No comments:

Post a Comment

for more information please share like comment and subscribe