From: Cian Bagshaw Date: Tue, 20 Dec 2022 23:16:57 +0000 (+0000) Subject: 1-11 X-Git-Url: https://tests.cianb.xyz/?a=commitdiff_plain;h=bca27ac764a6240244bd7b803337224fd3bcbd48;p=cProgLang 1-11 --- 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. +*/