簡單的C++有可能要求用戶輸入路徑並操縱這個文件嗎? 有沒有人知道一個網站了解更多關於此?谷歌這一次並不那麼容易。我如何讓用戶輸入文件並讓C++打開這個文件?
#include <iostream>
#include <fstream>
int main()
{
using namespace std;
char * b = 0;
cin >> b;
cout << b;
const char * c = b;
ofstream myfile;
myfile.open (c);
myfile << "Writing this to a file.\n";
myfile.close();
return 0;
}
你爲什麼要使用,而不是'的std :: string' C字符串? –