How to terminate a program with Ctrl-D?

后端 未结 5 1270
太阳男子
太阳男子 2021-01-20 01:06

I am trying to write a simple program that simulates a calculator. I would like the program to exit or turn-off when the Ctrl+D keystroke is made. I se

5条回答
  •  孤城傲影
    2021-01-20 01:41

    Under Unix, the terminal will interpret Ctrl+D (on an empty line) as the end of input; further reads from stdin will return EOF, which you can watch for.

提交回复
热议问题