learn_c/intro/ex1_10.c

17 lines
232 B
C

#include <stdio.h>
main()
{
int c;
while((c = getchar()) != EOF)
if (c == '\t')
printf("\\t");
else if (c == '\b')
printf("\\b");
else if (c == '\\')
printf("\\\\");
else
putchar(c);
}