2

我使用“GCC C 编译器”作为我的编译器,我有一个程序使用“fgets”将输入作为标准输入,然后由于某些输入,我使用多个 printf 来打印结果。

但是,我的问题是我希望输出发生在 fgets 之间,它们确实驻留在我的代码中,但是在我从 main 返回并且程序结束之前,目前什么都不会打印。

输入代码:

int get_inputs(char** operands, char* delim) {
  if (fgets(input,sizeof(input),stdin) == NULL) return 0;  /* End of file */

  /* Parse with StringParse, returns number of substrings */
  return StringParse(input, operands, delim, 2, "+-*/^ ");
}

输出代码:(在 While(1) 循环中)

count = get_inputs(operands, delim);

switch(count) {
case 0:
    printf("User Terminated\n");
    return 0;  /* User Terminated */

case 1: /* Single Value Input */
    accumulator = atof(operands[0]);
    printf("%g\n", accumulator);
    break;

case 2:
    if(strlen(operands[0]) == 0) { /* Operation First use Accumulator as input */
        accumulator = doMath(accumulator, atof(operands[1]), delim[0]);
        printf("%g\n", accumulator);
    }
    else { /* Two new values, replace Accumulator */
        accumulator = doMath(atof(operands[0]), atof(operands[1]), delim[0]);
        printf("%g\n", accumulator);
    }
    break;

default:
    printf("Invalid Input\n"); /* Invalid Input or Error */
    break;
}

每个其他函数都只是进行数学或字符串解析。

提前致谢!

4

1 回答 1

4

这是因为 stdout 被缓冲以提高性能。数据仅以较大的块推送到输出管道。要强制这种情况发生在某个点,请添加

fflush(stdout);

在写入标准输出的代码中。

于 2013-01-20T23:21:15.833 回答