diff options
| author | zlg <zlg@zlg.space> | 2013-04-23 13:33:25 -0500 |
|---|---|---|
| committer | zlg <zlg@zlg.space> | 2013-04-23 13:33:25 -0500 |
| commit | 82d318879c897b3d665767d74806cd33fe6791c0 (patch) | |
| tree | a3d2f41ef4e1d11136a3088784c59c604c20e47d /ch1/1-20_detab.c | |
| parent | Solve Exercise 3-6: itoa (3 arg version) (diff) | |
| download | knr-82d318879c897b3d665767d74806cd33fe6791c0.tar.gz knr-82d318879c897b3d665767d74806cd33fe6791c0.tar.bz2 knr-82d318879c897b3d665767d74806cd33fe6791c0.tar.xz knr-82d318879c897b3d665767d74806cd33fe6791c0.zip | |
Add exercise descriptions and answers for ch1
* Corrected behavior in solutions for 1-9 and 1-23
Diffstat (limited to '')
| -rw-r--r-- | ch1/1-20_detab.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ch1/1-20_detab.c b/ch1/1-20_detab.c index dc8f5b5..d0db601 100644 --- a/ch1/1-20_detab.c +++ b/ch1/1-20_detab.c @@ -1,11 +1,11 @@ #include <stdio.h> /* The C Programming Language: 2nd Edition - * Exercise 1-20: - * "Write a program `detab` that replaces tabs in the input with the proper - * number of blanks to space to the next tabstop. Assume a fixed set of - * tabstops, say every 'n' columns. Should 'n' be a variable or a symbolic - * parameter?" + * + * Exercise 1-20: Write a program `detab` that replaces tabs in the input with + * the proper number of blanks to space to the next tabstop. Assume a fixed set + * of tabstops, say every 'n' columns. Should 'n' be a variable or a symbolic + * parameter? * * Answer: 'n' should be a symbolic parameter. It's more apparent what's being * worked with and it's not susceptible to scope. Though, in this simple |
