Forum Replies Created

Viewing 1 replies (of 1 total)
  • Author
    Replies
  • in reply to: Trail #653
    test
    Participant
    Up
    0
    Down
    ::

    test this method

    #include<stdio.h>  
    int main()    
    {    
    int n,r,sum=0,temp;    
    printf("enter the number=");    
    scanf("%d",&n);    
    temp=n;    
    while(n>0)    
    {    
    r=n%10;    
    sum=(sum*10)+r;    
    n=n/10;    
    }    
    if(temp==sum)    
    printf("palindrome number ");    
    else    
    printf("not palindrome");   
    return 0;  
    }   
    
Viewing 1 replies (of 1 total)