#include #include #include #define SIZE 32 int main(void) { char str[SIZE], clone[SIZE]; /* 手順(1)*/ printf("文字列を 1 つ入力してください:"); scanf("%s", str); /* 手順(2)*/ /* 手順(3)*/ /* 手順(4)*/ /* 手順(5)*/ printf("変換したものを後ろにつなげると [%s]\n", str); return 0; }