Question: C Programming only! Create the following 3 programs using C programming, do not plagarize from other chegg answers. Name this program info.c This program reads
C Programming only!
Create the following 3 programs using C programming, do not plagarize from other chegg answers.
Name this program info.c This program reads in a series of words, separated by white spaces and terminated by xxxx (a sentinel). You can assume there will always be at least one word in the series and none of the words will ever have more than 20 characters. The program should print out the number of words read, the average length of words, and the maximum and minimum lengths of words. For example, given the input shown below:
the quick brown fox jumps over the lazy old dog xxxx
The program should generate the following output:
Count of words: 10 Average word length: 3.800000 Maximum word length: 5 Minimum word length: 3
Name this program pic.c This program reads a single positive integer (n) from the user and then prints the outline of a box that is n rows high and n columns wide. For example, reading the value 5 generates the output below on the left, and reading the value 8 generates the output below on the right(not pictured). The blank interior, if any, is generated by printing spaces there. Please make sure to print a newline before printing the box.
Example pic:

Name this program vowel.c The program reads an unknown number of words strings that are only lowercase letters stopping when end-of-file (control-d) is entered. The program counts the number of times that each vowel is seen, and prints the total number of occurrences of each vowel at the end. Entering the following in one or more lines, followed by control-d,
the quick brown fox jumps over the lazy old dog
the program should generate five lines of output in the format shown below:
The vowel a occurred 1 times
The vowel e occurred 3 times
The vowel i occurred 1 times
The vowel o occurred 5 times
The vowel u occurred 2 times
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
