#include #include #define SIZE 256 int main(void) { char word[SIZE], str[SIZE]; strcpy(str, "|"); printf("単語を 1 つ入力してください:"); scanf("%s", word); strcat(str, word); strcat(str, "|"); printf("str = %s\n", str); return 0; }