Hello! Next problem: C ++ cannot open the file. Tried both an absolute and relative path, and a Visual Studio and Clion. The operating system is Windows 10. Could it be a problem that there is no access to this file? (In Python, files normally open and read) Here is the code:
fstream f; f.open("in.txt", ios::in); cout << f.is_open(); Actually f.is_open () returns 0. The file is in the correct directory. Thank you in advance!