c语言中‘\n’是什么意思 日期:2016-03-26 10:30:12 人气:2 c语言中‘\n’是什么意思 C语言中'\n'是换行的意思,一般放到printf()这类函数中使用,比如: printf("this is a test\n Please check it\n"); 结果是: this is a test Please check it