fork download
  1. # include <stdio.h>
  2.  
  3. int isPalindrome(char s[])
  4. {
  5. int l = 0;
  6. int r = 0;
  7.  
  8. while (s[r] != '\0')
  9. {
  10. r++;
  11. }
  12. r--;
  13.  
  14.  
  15. while (l < r)
  16. {
  17. if (s[l] != s[r])
  18. {
  19. return 0;
  20. }
  21. l++;
  22. r--;
  23. }
  24. return 1;
  25. }
  26.  
  27. //メイン関数は書き換えなくてよいです
  28. int main(){
  29. char s[100];
  30. scanf("%s",s);
  31. printf("%s -> %d\n",s,isPalindrome(s));
  32. return 0;
  33. }
  34.  
Success #stdin #stdout 0.01s 5280KB
stdin
girafarig
stdout
girafarig -> 1