3.5.2 转义字符 #include <stdio.h>main() {int a, b, c;a = 5;b = 6;c = 7;printf("ab c\tde\rf\n");printf("hijk\tL\bM\n");return 0; }