fork(1) 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.  
  25. return 1;
  26. }
  27.  
  28. //メイン関数は書き換えなくてよいです
  29. int main(){
  30. char s[100];
  31. scanf("%s",s);
  32. printf("%s -> %d\n",s,isPalindrome(s));
  33. return 0;
  34. }
  35.  
Success #stdin #stdout 0s 5280KB
stdin
girafarig
stdout
girafarig -> 1