课程
/后端开发
/C
/C语言入门
\n转义字符有什么用,输不输都一样啊
2019-06-18
源自:C语言入门 1-5
正在回答
如果没有\n,那么输出代码便会成这样:
...
printf("I love imooc.");
printf("I can learn many things in imooc.");
输出:I love imooc.I can learn many things in imooc.
若加\n:
printf("I love imooc.\n");
printf("I can learn many things in imooc.\n");
输出:I love imooc.
I can learn many things in imooc.
举报
C语言入门视频教程,带你进入编程世界的必修课-C语言
2 回答\n转义字符是什么意思?
1 回答转义字符
2 回答转义字符~
2 回答转义字符...
2 回答转义字符!