在C

时间:2016-03-26 12:48:21

标签: c newline backspace time.h

我想打印自程序开始以来实时流逝的秒数。首先输出为“0”。一秒钟后,“0”被“1”代替,依此类推。这是我最初写的代码。

#include<stdio.h>
#include<time.h>

void main ()
{
  long int time;

  printf("Hello, let us measure the time!\n");

  time=clock();
    printf("%ld", 0);

  while(time/CLOCKS_PER_SEC<7)
    {
        time=clock();
        if(time%CLOCKS_PER_SEC==0)
        {
            printf("\r");
            printf("%ld", time/CLOCKS_PER_SEC);
        }
    }
}

仅在7秒结束时输出“7”。

如果我进行以下替换,代码可以正常工作。

    printf("%ld", 0);

通过

    printf("%ld\n", 0);

            printf("\r");
            printf("%ld", time/CLOCKS_PER_SEC);

通过

            printf("\33[A");    //vt100 char, moves cursor up
            printf("\33[2K");   //vt100 char, erases current line
            printf("%ld\n", time/CLOCKS_PER_SEC);

问题似乎是在完全确定当前行之前不会发送输出。这里发生了什么?

我在Ubuntu上使用gcc编译器。

1 个答案:

答案 0 :(得分:2)

使用printf()写入的输出流将缓冲,直到收到换行符。由于您没有发送新行,因此在您的应用程序退出或缓冲区填满之前,您将无法获得刷新。

你可以在每个printf()之后自己刷新输出缓冲区,正如hyde在上面的评论中使用fflush(stdout)所说的那样。

或者您可以使用setbuf(stdout,NULL);

禁用缓冲