3 /* exercise 1-13: create a histogram of the length of words in the input */
4 /* count the lengths of the words w/ an iterator
5 upon reading whitespace, increment the value saved at an array index equal to the iterator's value
14 for(i
= 0; i
< 100; ++i
) {
18 while((c
= getchar()) != EOF
) {
19 if(c
== ' ' || c
== '\n' || c
== '\t') {
27 for (i
= 1; i
< 100; ++i
) {
31 for (j
= 0; j
< nlen
[i
]; ++j
) {