char c[]="\t\v\\\0will\n";
printf ("%d",strlen(c));
结果为何为3?
恩恩恩,对对对.经查书这些的确是转义字符.
转义字符:
\n
\t
\v
\b
\r
\f
\a
\"
\'
\\
\ddd
\xhh
谢谢楼上的回答:)