标签:
1. 在C程序中,如果字符串过长而需要跨行时,要在换行时加上“\”。
printf("Hello, world "); // error printf("Hello, world\n"); // ok
《C程序设计语言》学习笔记
原文地址:http://www.cnblogs.com/wuhualong/p/ReadingNote_C_Bible_01.html