ユーザーが読みたいファイルを要求するプログラムを作成しようとしていますが、その行に「myfile.open(fileName)
呼び出しに一致する関数がありません」というエラーが表示std::basic_ifstream<char, std::char_traits<char> >::open(std::string&)'
されます。
string filename;
cout<<"Enter name of file: ";
cin>>filename;
ifstream myFile;
myFile.open(filename); //where the error occurs.
myFile.close();