When I compile my code all is good no errors but when I open the file that I am writing too I see that most of the text has been converted into strange Chinese looking characters.
#include <iostream> #include <fstream> #include <Windows.h> #include <string> #include <sstream> using namespace std; int main() { string temp, line; fstream file("LogData.csv"); fstream txtfile("temp.txt", ofstream::out, ofstream::trunc); while (getline(file, line, ' ')) { txtfile << line; } file.close(); txtfile.close(); }
2.1m questions
2.1m answers
60 comments
57.0k users