码迷,mamicode.com
首页 > 其他好文 > 详细

02 C转义字符

时间:2020-02-20 17:25:31      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:表示   一个   main   引入   img   实现   code   style   换行符   

①\t:一个制表位,实现对齐的功能

②\n: 换行符

③\\:一个 \

④\" : 一个 "

⑤\‘ : 一个 ‘

⑥ \r : 一个回车 

 1 //1,引入头文件
 2 #include<stdio.h>
 3 
 4 void main() {
 5     printf("北京\t上海\t天津\n");
 6     printf("张三说:\n你好\n");
 7     printf("hello,\\world\n");
 8     printf("hello,\"world\n");
 9     printf("hello,\‘world\n");
10     printf("唐伯虎点\r秋香\n");  //注意\r表示回车不是换行,光标返回到行首
11 }

技术图片

 

02 C转义字符

标签:表示   一个   main   引入   img   实现   code   style   换行符   

原文地址:https://www.cnblogs.com/shanlu0000/p/12336186.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!