\ n和C中的回车键有什么区别?

时间:2015-08-15 16:47:43

标签: c

enter的ASCII值为13,'\n'的ASCII值为10.它们都将我们带到下一行。为什么他们的ASCII值不同?

1 个答案:

答案 0 :(得分:0)

基本上,\n会将您带到新行。例如:

printf("hello"); (press enter)
printf("world");
Output: helloworld

在代码中使用\n时:

printf("hello");
printf("\nworld");
Output: hello
        world