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