读取输入时程序停止

时间:2013-04-18 11:27:13

标签: c input

我使用以下循环读取输入

do
{
      i=0;
      do
      {
          line[i]=fgetc(stdin);
          i++;

      }while(i<100 && line[i-1]!='\n' && line[i-1]!=EOF);

      //Parsing input

 }while(line[i-1]!=EOF);

我的输入看起来像这样

$GPRMC,123519,A,4510.000,N,01410.000,E,010.0,010.0,120113,003.1,W*4B
$GPRMC,123520,A,4520.000,N,01650.000,E,010.0,010.0,230394,003.1,W*4B
$GPRMC,123521,A,4700.000,N,01530.000,E,010.0,010.0,230394,003.1,W*4F
$GPRMB,A,0.66,L,001,002,4800.24,N,01630.00,E,002.3,052.5,001.0,V*1D
$GPGGA,123523,5000.000,N,01630.000,E,1,08,0.9,100.0,M,46.9,M,,*68

所以我的问题是,在最后一行之后,当它应该读取EOF时,它会在line[i]=fgetc(stdin);行停止。即使我从文件中复制该输入并将其粘贴到终端,或者即使我在终端中使用< input.txt运行该程序。但是当我在终端中运行它时,粘贴输入并手动添加EOF( ^ D)比它停止..有人能告诉我哪里有问题吗?

3 个答案:

答案 0 :(得分:0)

用while替换do-while并尝试。在找到EOF之后将检查条件,我的意思是,即使在EOF之后,你正在进行不正确的fgetc(stdin)

答案 1 :(得分:0)

#include <stdio.h>

int main(int argc, char *argv[]){
    char line[100+1];
    int ch;

    do{
        int i=0;
        while(EOF!=(ch=fgetc(stdin)) && ch !='\n' && i<100){
            line[i++]=ch;
        }
        line[i]='\0';
        if(*line){
            //Parsing input
            printf("<%s>\n", line);
        }
    }while(ch != EOF);

    return 0;
}

答案 2 :(得分:0)

您正在将最多100个字符读入char line []。您终止时会输入100个字符或'\n'或EOF;这是fgets()

的规范

因此,请考虑使用一个与您的代码逻辑匹配的调用fgets()。使用fgets,相当于:

while(fgets(line, 100, stdin)!=NULL )  // get up to \n or 100 chars, NULL return means usually EOF
{
   char *p=strchr(line, '\n');
   if(p!=NULL) *p=0x0;

   // parsing input
}
// here you should also check for NULL caused by system errors and not EOF -- maybe using feof(stdin)