爱疯手机能换电池吗:C语言的问题!

来源:百度文库 编辑:中科新闻网 时间:2024/05/08 03:48:37
请问:\r和\n有什么区别?
如以下的程序:
#include<conio.h>
void main(void)
{
int color=5;
textcolor(color++);
cprintf("This is a test!\r");
textcolor(color);
cprintf("This is a test!!\n");
textcolor(++color);
cprintf("This is a test!!!\r\n");
}

\r是回车,光标回到该行头位置
\n是换行,光标移到下一行该位置
\r,有时候可以用作改写

\r是回车,光标回到该行头位置
\n是换行,光标移到下一行该位置