From bca27ac764a6240244bd7b803337224fd3bcbd48 Mon Sep 17 00:00:00 2001 From: Cian Bagshaw Date: Tue, 20 Dec 2022 23:16:57 +0000 Subject: [PATCH] 1-11 --- 1/11.c | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 1/11.c diff --git a/1/11.c b/1/11.c new file mode 100644 index 0000000..e4ece6e --- /dev/null +++ b/1/11.c @@ -0,0 +1,10 @@ +/* + Exercise 1-11. How would you test the word count program? What kinds of input + are most likely to uncover bugs if there are any? + === + + One could test the program by giving it different character inputs of decent + length, to see if the program counts everything. Hyphenated words would cause + an issue as they would be counted as one, since they are not separated by + whitespace. +*/ -- 2.20.1