/* 以下に示すような表示をおこなうプログラムを作成せよ。 ただし、プログラム中、printf関数の呼び出しは1回限りとする。 風 林 火 山 */ #include int main(void) { printf("風\n林\n火\n山\n"); return 0; }