blob: 903fff47f3775420643b6eb64075b47b04f0f663 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#include <stdio.h>
/* The C Programming Language, 2nd Edition
*
* Exercise 1-10: Write a program to copy its input to its output, replacing
* each tab by '\t', each backspace by '\b', and each backslash by '\\'. This
* makes tabs and backspaces visible in an unambiguous way.
*
* Answer: Run a loop with getchar() and check its value. When you run into a
* tab, backspace, or backslash, just output the two characters and move on.
*/
int main(void) {
char c;
while ((c = getchar()) != EOF) {
if (c == '\t') {
printf("\\t");
continue;
}
if (c == '\b') {
printf("\\b");
continue;
}
if (c == '\\') {
printf("\\\\");
continue;
}
putchar(c);
}
return 0;
}
|