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 function named Rot 13 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 named WriteTranslatedChar will have two parameters, the translated character and a reference to an ofstream data type for a secondary file named "output.rot13", and write a translated character to this file.
I do not understand what goes in the void statements
void statements are statements which evaluate to nothing. I think you mean "I don't understand what goes in the functions I must write that return nothing." You should probably start by making the signatures reflect the requirements you enumerated in the first post.