Question: I will make sure to thumbs up the answer! thank you very much! Write a program that reads in a line of text and computes

I will make sure to thumbs up the answer! thank you very much!
Write a program that reads in a line of text and computes the frequency of the words in the text. Assume that the input contains words separated by white spaces, comma, period, or exclamation point. Sample input/output: Input: I came, I saw, I conquered! Output: I 3 came 1 saw 1 conquered 1 Name your program frequency. c. Assume input is no longer than 1000 characters. Assume the input contains no more than 1000 words. Assume each word is no more than 50 characters. Store a word into a string array when it is first encountered. Create a parallel integer array to hold a count of the number of times that each particular word appears in the input. If the word appears in the input multiple time, do not add it to the string array, but make sure to increment the corresponding word frequency counter in the parallel integer array. You may use any string library functions such as strtok, strcmp, and strcpy
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
