fork download
  1.  
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4.  
  5. int myStrlen(char s[]){
  6. int i;
  7. for(i=0;s[i]!='\0';i++);
  8. return i;
  9. }
  10.  
  11. // 関数の中でtmpに対してmallocして
  12. // そこに回文を代入してreturnで返しましょう
  13. char *setPalindrome(char s[]){
  14. char *tmp;
  15. int m = myStrlen(s);
  16.  
  17. tmp = (char *)malloc(1*((m*2)+1));
  18. if(tmp == NULL){
  19. printf("ERROR\n");
  20. return 0;
  21. }
  22.  
  23. for(int i=0; i<m; i++)
  24. tmp[i]=s[i];
  25. int k=m-1;
  26. for(int j=m; j<m*2; j++){
  27. tmp[j]=s[k];
  28. k--;
  29. }
  30. tmp[m*2]='\0';
  31. return tmp;
  32. }
  33.  
  34.  
  35. //メイン関数はいじる必要はありません
  36. int main(){
  37. int i;
  38. char nyuryoku[1024];
  39. char *kaibun;
  40. scanf("%s",nyuryoku);
  41. kaibun = setPalindrome(nyuryoku);
  42. printf("%s\n -> %s\n",nyuryoku,kaibun);
  43. free(kaibun);
  44. return 0;
  45. }
Success #stdin #stdout 0s 5284KB
stdin
abcd
stdout
abcd
  -> abcddcba