Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Consider the data file words.txt that you have-the input file. write a c++ program in the form as shown below taht computes the number of

Consider the data file words.txt that you have-the input file.

write a c++ program in the form as shown below taht computes the number

of words of length 1,2,3,4,...,19, and >=20 characters.use array

histogram_words to compute and store the lengths of the words in the

inpute file. write the computes statistics into another file

words_statistics.txt -the output file.

#include

#include

#include

using namespace std;

void word_length_statistics (ifstream& fin, ofstream & fout);

int main(){

ifstream fin;

ofstream fout;

//enter code here

word_length_statistics)fin,fout);

return 0;

}

void word_length_statistics(ifstream& ofstream&fout){

int histogram_words[21]={0};

//enter code here

}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Modern Database Management

Authors: Donald A. Carpenter Fred R. McFadden

1st Edition

8178088045, 978-8178088044

More Books

Students also viewed these Databases questions