fork download
  1. # include <stdio.h>
  2.  
  3. int isPalindrome(char s[]){
  4. int i=0, count=0;
  5. char copy[100];
  6.  
  7. for(int j=0; s[j]!='\0'; j++) count++;
  8.  
  9. copy[count] = '\0';
  10.  
  11. for(i=0; i < count; i++){
  12. copy[i] = s[count - i - 1];
  13. //printf("%c",copy[i]);
  14. }
  15. printf("\n");
  16.  
  17. for(i=0; s[i]!='\0'; i++){
  18. if(s[i] != copy[i]) return 0;
  19. }
  20. return 1;
  21. }
  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. }
  30.  
Success #stdin #stdout 0s 5248KB
stdin
girafarig
stdout
girafarig -> 1