C++ Problem writing to a file
My Code: std::ofstream m_myfile, m_myfile.open ("zLog.txt"); m_myfile << "Writing this to a file " << " and this " << endl; when this C++ Program runs, I have another program that needs to read this file. The problem is that the file is locked by C++ and I cannot read it from the other program. I know there is something I have to d...