Question: Write a C++ program that processes a file and removes all occurrences of a certain character from the file. The file should be saved under

Write a C++ program that processes a file and removes all occurrences of a certain character from the file. The file should be saved under a different name with all occurrences of the specified character removed. For example, if we are removing the space characters from the file and the input file contains the following text: contains a lot Hello this file of spaces. and three lines The output file will look like the following: Hellothisfilecontainsalot ofspaces. andthreelines Your program should prompt the user for the input file name, the output file name, and the character to filter out of the file. Write the following functions: A function that obtains the input and output file names. (Hint: use reference parameters) A function that reads the input file and creates the output file. Make sure you check if the files fail to open
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
