目录
%的介绍
int a=1;
1、printf(''%d'',a);//输出1
2、printf(''%%d'',a);//输出%d
3、printf(''%%%d '',a)//输出%1
C语言中,%也是转义符,%%相当于%
斜杠与反斜杠
首先需要明白斜杠与反斜杠,斜杠:/,反斜杠:\
转义字符
常用的转义字符:
'\n',换行
'\r',回车
'\0',空字符,通常用作字符串结束标志
'\b',退格
下面演示这四个常用转义字符的作用
1,正常打印,不用任何转义字符
cpp
#include<stdio.h>
int main()
{
pritnf("hello world!");
printf("hello world!");
return 0;
}
输出结果
cpp
hello world!hello world!
2,'\n'转义字符
cpp
#include<stdio.h>
int main()
{
pritnf("hello world!\n");
printf("hello world!");
return 0;
}
输出结果
cpp
hello world!
hello world!
如果两行都加上了'\n'
cpp
#include<stdio.h>
int main()
{
pritnf("hello world!\n");
printf("hello world!\n");
return 0;
}
输出结果
cpp
hello world!
hello world!
3,'\r'转义字符
cpp
#include<stdio.h>
int main()
{
printf("hello world!\r");
printf("I love you!");
return 0;
}
输出结果
cpp
I love you!!
再看一个例子
cpp
#include<stdio.h>
int main()
{
printf("123456\r");
printf("7890");
return 0;
}
输出结果
cpp
789056
'\r'转义字符会把终端界面的输出光标移至当前行的最开头出
4,'\b'转义字符
cpp
#include<stdio.h>
int main()
{
printf("hello world!\b");
printf("I love you!");
return 0;
}
输出结果
cpp
hello worldI love you!
'\b'会将终端界面的输出光标前移一个元素
cpp
#include<stdio.h>
int main()
{
printf("123456\b");
printf("7890");
return 0;
}
输出结果
cpp
123457890