A collection of variable declarations and function calls


Write a program whose main function is merely a collection of variable declarations and function calls.  This program reads a text and outputs the letters, together with their counts, as explained below in the function printResult. (There can be no global variables! All information must be passed in and out of the functions.  Use a structure to store the information.)
Your program must consist of at least the following functions:
? Function openFile: Opens the input and output files.  You must pass the file streams as parameters (by reference, of course).  If the file does not exist, the program should print an appropriate message and exit.  The program must ask the user for the names of the input and output files.
? Function count: Counts every occurrence of capital letters A-Z and small letters a-z in the text file opened in the function openFile.  This information must go into an array of structures.  The array must be passed as a parameter, and the file identifier must also be passed as a parameter.
? Function printResult: Prints the number of capital letters and small letters, as well as the percentage of capital letters for every letter A-Z and should look like this: "25%".  This information must come from an array of structures, and this array must be passed as a parameter.

Request for Solution File

Ask an Expert for Answer!!
Basic Computer Science: A collection of variable declarations and function calls
Reference No:- TGS0143962

Expected delivery within 24 Hours