Can I specify what file I want to write into in C++? I want to be able to type in the filename and write into that file. When I try making myfile.open("example.txt") myfile.open(var), I get a big error...
error: no matching function for call to ‘std::basic_ofstream >::open(std::string&)’ /usr/include/c++/4.2.1/fstream:650: note: candidates are: void std::basic_ofstream<_CharT, _Traits>::open(const char*, std::_Ios_Openmode) [with _CharT = char, _Traits = std::char_traits]
Can you make any sense of this or explain what I am doing wrong? I have a feeling this is very simple, as this is my first week using C++.


myfile.open("example.txt"). – CoffeeRain Feb 1 '12 at 19:26myfileis declared as, nor is it the line that produces the error. Think of it this way: you want to show us the shortest version of your program that demonstrates the exact problem you're having. – luke Feb 1 '12 at 19:33