I'm trying to write a simple program that will prompt for a string typed in by keyboard and save it to a file. I've tried lots of variations and this is just the latest version. What am I not doing? Would appreciate help for the helpless.
//Prompt for a string input by keyboard and save the string in a file
#include<iostream>
#include<fstream>
#include <string
using namespace std;
int main()
{
string line;
ifstream myfile;
myfile.open ("newtext.txt");
string input = "";
cout << "Input text and press return:\n";
getline(cin, input);
//cout << getline (cin, input);
//cin i;
myfile << getline(cin, input); //error here
myfile.close();
return 0;
}