fork(1) 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.  
  9. count ++;
  10.  
  11. }
  12.  
  13. for(int j=0;j<count;j++){
  14.  
  15. t[j]=s[count-j-1];
  16.  
  17. }
  18.  
  19. for(int k=0;s[k]==t[k];k++){
  20. if(s[k]=='\0') return 1;
  21. }
  22.  
  23. return 0;
  24.  
  25. }
  26. int main(){
  27. char s[100];
  28. scanf("%s",s);
  29. printf("%s -> %d\n",s,isPalindrome(s));
  30. return 0;
  31. }
Success #stdin #stdout 0s 5276KB
stdin
dvd
stdout
dvd -> 0