标签:ar sp c ad har bs 字符串 r 5
如果字符串文字中间没有间隔或者间隔的是空格符,ANSI C会将其串联起来。
char greeting[50] = "Hello, add" "how are" "you" "today!";
和
char greeting[50] = "Hello, and how are you today!";
是相等的。
字符串
原文地址:http://www.cnblogs.com/itpoorman/p/3951044.html