I want to call and use this function in anther function, not the main program.
1 2 3 4 5 6
void CheckFile( ofstream &outF)
ifstream input;
ofstream output
// here i want to open the input file. like: input.open(inputfile.c_str() )
// here i want to open the output file. like: output.open(outputfile.c_str() )