Write a C program that reads some text from a file and print some statistics of the text on the screen.

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter9: Completing The Basics
Section: Chapter Questions
Problem 4PP: (Useful utility) Modify the program written for Exercise 3 to search for the first occurrence of a...
icon
Related questions
Question
100%

: Write a C program that reads some text from a file and print some statistics of the text on the
screen.

• The statistics to be printed on the screen:
o Number of sentences in the text
It's guaranteed that all sentences end only with *.
. I's guaranteed that there's no other in the text (remove if you encounter
them before running the program)
o Number of words in each sentence
• It's guaranteed that all numerical values are only integers
o The frequency of the following prepositions in total:
"in", "to", "for", "at", "from", "of"
• To accomplish this task, write the following functions:
o void get_freq(char* sentence); // gets the frequency of the prepositions
o void get_numerics(char* word); // gets numeric values from the text
o void count_words(char* sentence); // counts the words of a sentence
o void collect_stats(char text[]); // collects the frequencies of the prepositions
o void report(); // prints the following on the screen
• Number of sentences
• Number of words
Prepositions and their frequencies
Numeric values found in the text
o void main();
• Get the file name from the user
• Read the text from the file using fgets
• Make the necessary checks for the file status
Texts shall be short: 1000 characters for containing the text and 50 characters
for containing the file name should be enough
• Think about the function prototypes and where you should define the data structures to
contain the statistics
• Store prepositions in an array
• Store frequencies in an array
Transcribed Image Text:• The statistics to be printed on the screen: o Number of sentences in the text It's guaranteed that all sentences end only with *. . I's guaranteed that there's no other in the text (remove if you encounter them before running the program) o Number of words in each sentence • It's guaranteed that all numerical values are only integers o The frequency of the following prepositions in total: "in", "to", "for", "at", "from", "of" • To accomplish this task, write the following functions: o void get_freq(char* sentence); // gets the frequency of the prepositions o void get_numerics(char* word); // gets numeric values from the text o void count_words(char* sentence); // counts the words of a sentence o void collect_stats(char text[]); // collects the frequencies of the prepositions o void report(); // prints the following on the screen • Number of sentences • Number of words Prepositions and their frequencies Numeric values found in the text o void main(); • Get the file name from the user • Read the text from the file using fgets • Make the necessary checks for the file status Texts shall be short: 1000 characters for containing the text and 50 characters for containing the file name should be enough • Think about the function prototypes and where you should define the data structures to contain the statistics • Store prepositions in an array • Store frequencies in an array
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Intelligent Machines
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning