count the number of lines, words, and characters within an input

前端 未结 6 1917
礼貌的吻别
礼貌的吻别 2021-01-19 06:20

Right now I am going through a book on C and have come across an example in the book which I cannot get to work.

#include 
#define IN 1
#defin         


        
6条回答
  •  悲&欢浪女
    2021-01-19 06:46

    The program only terminates when the input ends (getchar returns EOF). When running on terminal, this normally never happens and because of this it seems that the program is stuck. You need to close the input manually by pressing Ctrl+D (possibly twice) on Linux or pressing F6 and Enter at the beginning of the line on Windows (different systems may use different means for this).

提交回复
热议问题