Question: The following program should be written in C programming. Please refer to input and output examples to see what the program should produce. Write a
The following program should be written in C programming. Please refer to input and output examples to see what the program should produce.
Write a program that prompts the user to enter a sentence (assume that a sentence can have a maximum of 50 characters). It then counts the vowels and consonants in it. It also calculates the average word length of the input sentence. Word length is the total number of alphabetic characters in the sentence divided by the total number of words in it. Words are separated by one or more spaces. All the results are displayed at the end. Please follow the given sample input/output. Hint: use fgets instead of scanf.

Sample Input: Enter a sentence: today is thursday Number of vowels in the sentence = 5 Number of consonants in the sentence-10 Average word length: 5.0 Sample Input: Enter a sentence: today is thursday Number of vowels in the sentence = 5 Number of consonants in the sentence-10 Average word length: 5.0
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
