Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
後でその文字列を反転できるように、多くの文字を 1 つの文字列に構成するにはどうすればよいですか? stdin から getchar() で文字を読み取ります。次のようなループで印刷します。
do { character = getchar(); printf("%c", character); } while(character != EOF)
しかし、私はそれを反転して印刷する必要があります。どうやってやるの?