赞
踩
键盘上的 Enter 键:
换行的过程:
\r
:回车
\n
:换行+回车
#include <stdio.h>
#include <unistd.h>
int main()
{
printf("Hello RoundBottle!\n");
sleep(1);
return 0;
}
test1.c 编译后的执行结果:
上述代码分析:\n
换行符被执行后 缓冲区被刷新 ,显示器上打印——Hello RoundBottle!\n,然后执行 sleep 函数,延时一秒后,显示器上从光标所在位置打印操作提示符。
头文件:#include <unistd.h>
#include <stdio.h>
#include <unistd.h>
int main()
{
printf("Hello RoundBottle!\r");
fflush(stdout);
sleep(1);
return 0;
}
test2.c 编译后的执行结果:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。