使用for循环计算输入中的字符数

#include stdio.hint main()/*fromww w.java 2s. com*/{double nc;for (nc = 0; getchar() != EOF; ++nc)

编程学习网为您整理以下代码实例,主要实现:使用for循环计算输入中的字符数,希望可以帮到各位朋友。

#include <stdio.h>  

  int main()  /*from  w  w w  .  ja  va 2s. co  m*/
  {  
  double nc;  

for (nc = 0; getchar() != EOF; ++nc)  
;  
printf("%.0f\n", nc);  
}

本文标题为:使用for循环计算输入中的字符数

基础教程推荐