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. int len=myStrlen(s);
  14. char *tmp;
  15. tmp=(char*)malloc(sizeof(char)*(2*len+1));
  16.  
  17. if(tmp==NULL){
  18. printf("ERROR\n");
  19. return 0;
  20. }
  21.  
  22. for(int i=0; i<len; i++){
  23. tmp[i]=s[i];
  24. }
  25. for(int j=0; j<len; j++){
  26. tmp[j+len]=s[len-1-j];
  27. }
  28. tmp[2*len]='\0';
  29.  
  30. return tmp;
  31. }
  32.  
  33.  
  34. //メイン関数はいじる必要はありません
  35. int main(){
  36. int i;
  37. char nyuryoku[1024]; //入力
  38. char *kaibun; //回文を受け取る
  39. scanf("%s",nyuryoku);
  40. kaibun = setPalindrome(nyuryoku);
  41. printf("%s\n -> %s\n",nyuryoku,kaibun);
  42. free(kaibun);
  43. return 0;
  44. }
  45.  
Success #stdin #stdout 0s 5288KB
stdin
abcd
stdout
abcd
  -> abcddcba