I have a textfile that contains this line:
C:\Program Files\app\
I want to read it to become this:
C:\\Program Files\\app\\
I know how to read the file in visual c++, but how to add a slash() everytime it founds the slash.
char str[200];
fstream file_op("C:\\path.txt",ios::in);
file_op >> str;
file_op.close();