From 82d318879c897b3d665767d74806cd33fe6791c0 Mon Sep 17 00:00:00 2001 From: zlg Date: Tue, 23 Apr 2013 13:33:25 -0500 Subject: Add exercise descriptions and answers for ch1 * Corrected behavior in solutions for 1-9 and 1-23 --- ch1/1-20_detab.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'ch1/1-20_detab.c') 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 /* 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 -- cgit v1.2.3-54-g00ecf