最佳答案
我有这样的 C 代码:
#include<stdio.h>
int main()
{
printf("Hey this is my first hello world \r");
return 0;
}
我使用 \r
转义序列作为实验。当我运行代码时,我得到的输出如下:
o world
为什么会这样,\r
到底有什么用?
如果我在一个在线编译器中运行相同的代码,我会得到如下输出:
Hey this is my first hello world
为什么在线编译器产生不同的输出,忽略了 \r
?