// 練習問題8 // 3.つぎのプログラムを実行した後,出力される文字列は何か。 // 96ページ #include #include int main(void) { char *a, b[10], c[30]; a = "The moon "; strcpy(c, a); strcat(c, "is "); strcpy(b, "romantic."); strcat(c, b); printf("%s\n", c); }