Write a C++ program that asks the user for the name of an input file and translates the contents of that input file using ROT13.
Your main function should be responsible for reading the input file and coordinating calls to a functon named ROT13 that will do the translation for each character and WriteTranslatedChar that will write the translated character to a secondary file, the ROT13 function should be defined with a reference parameter that will be the initial character as input and the translated character as output.
The second function WriteTranslatedChar will have two parameters, the translated character and a reference to an ifstream data type for a secondary file named "output.ROT13", and write that translated character to this file.
This is what I have so far
Please Help It's due Monday.
How can I tell if it translated the file and created the output file,
I feel really lost.
When I try to build it using Visual studio it gives me this error
Severity Code Description Project File Line Suppression State
Error C2679 binary '>>': no operator found which takes a right-hand operand of type 'std::string' (or there is no acceptable conversion) Chapter8Exercise2 c:\users\robert\desktop\chapter8exercise2\chapter8exercise2\ch8_ex2.cpp 30