赞
踩
在 C 语言中,
回车符可以用 “\r” 来表示,
换行符可以用 “\n” 来表示。
例如,在代码中使用 printf() 函数输出 “Hello\r\nWorld”,那么输出的结果将会是:
Hello
World
其中,"\r\n" 表示一个回车符和一个换行符,使得光标移动到了下一行的开头,“World” 从新的一行开始输出。
所以,你可以理解为:\r是使得光标移动到这一行的开头;\r\n是使得光标移动到了下一行的开头
eg:
#include<iostream>
using namespace std;
int main()
{
cout << "Hello\rWorld!" << endl;
cout << "=============="<< endl;
cout << "Hello\nWorld!" << endl;
cout << "=============="<< endl;
cout << "Hello\r\nWorld!" << endl;
cout << "=============="<< endl;
cout << "Hello\n\rWorld!" << endl;
return 0;
}
输出结果:
World!
==============
Hello
World!
==============
Hello
World!
==============
Hello
World!
另外,C 语言中也提供了特殊字符序列来表示其他一些控制字符,如制表符、响铃符等。以下是一些常见的特殊字符序列及其含义:
需要注意的是,在使用特殊字符序列时,需要特别注意不同操作系统之间的差异,以确保程序在不同平台上都能够正确地解析和处理。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。