码迷,mamicode.com
首页 > 其他好文 > 详细

printf的几点新发现

时间:2020-01-12 16:40:48      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:fine   页面   net   secure   style   efi   缓冲区   amp   define   

1、关于printf的缓存刷新问题。

https://blog.csdn.net/h___q/article/details/82469598

将待打印的内容放入缓冲区中,刷新之后就能打印出来。

#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
int main(void)
{
    char ch;

    scanf("%c",&ch);

    while (ch != g) {
        printf("%c", ch);
        scanf("%c", &ch);
    }

    return 0;
}

在输入队列中依次读取,之后连续打印出来。

结果页面如下,

printf的几点新发现

标签:fine   页面   net   secure   style   efi   缓冲区   amp   define   

原文地址:https://www.cnblogs.com/awheat/p/12183000.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!