fork download
  1. # include <stdio.h>
  2.  
  3. int isPalindrome(char s[]){
  4. int t[100];
  5. int count=0;
  6.  
  7. for(int i=0;s[i]!='\0';i++){
  8. count ++;
  9. }
  10.  
  11. for(int j=0;j<count;j++){
  12. t[j]=s[count-j-1];
  13. }
  14.  
  15. t[count+1]='\0';
  16.  
  17. for(int k=0;k<=count;k++){
  18. if(s[k]!=t[k]) return 0;
  19. }
  20.  
  21. return 1;
  22.  
  23. }
  24. int main(){
  25. char s[100];
  26. scanf("%s",s);
  27. printf("%s -> %d\n",s,isPalindrome(s));
  28. return 0;
  29. }
Success #stdin #stdout 0.01s 5284KB
stdin
dvd
stdout
dvd -> 0