fork(1) 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=(int *)malloc(sizeof(int)*count*2);
  17. tmp=s;
  18. for(int i=count*2;i>count;i--){
  19. tmp[i]=s[n];
  20. n++;
  21. }
  22. //以下に必要な宣言を含めて書いてください
  23. }
  24.  
  25.  
  26. //メイン関数はいじる必要はありません
  27. int main(){
  28. int i;
  29. char nyuryoku[1024]; //入力
  30. char *kaibun; //回文を受け取る
  31. scanf("%s",nyuryoku);
  32. kaibun = setPalindrome(nyuryoku);
  33. printf("%s\n -> %s\n",nyuryoku,kaibun);
  34. free(kaibun);
  35. return 0;
  36. }
  37.  
Success #stdin #stdout 0s 5284KB
stdin
abcd
stdout
abcd
  -> (null)