/* 转义字符的使用 */ #include <stdio.h> int main() { printf(" ab c\t de\rf\tg\n"); printf("h\ti\b\bj k\n\n"); return 0; }