zl程序教程

您现在的位置是:首页 >  后端

当前栏目

C/C++(stdout)实时输出

2023-09-14 09:07:03 时间
static void *test(void *arg)
{
    while (TRUE)
    {
        printf("%d, %d\n", 1,1);
        fflush(stdout);
        sleep(1);
    }
}