3 * Write a program to copy its input to its output, replacing each tab by \t, each backspace by \b,
4 * and each backslash by \\. This makes tabs and backspaces visible in an unambiguous way.
7 // NOTE: On most modern systems, backspaces will not show up, because of buffered output.
13 * Print this when we need to show a special character.
14 * It itself is escaped, because a backslash is also a special character!
21 // Read all input until EOF.
23 while ((c
= getchar()) != EOF
)
24 // Show special characters by printing ESC_CHAR and then a letter.