I'm having a problem with cin.getline();. cin.getline is ignoring the first word
cout << endl << "Insert the reason: " << endl <<"> ";
cin >> Reason;
cin.getline(Reason,200);
I think thats how you do it anyway. I'm not sure if the problem is here, or when I input it into a file:
myfile.open("BudgetLog.txt", ios::app);
myfile << endl << "Time: " << Date << " " << Time << "\t\tAmount taken: " << Amount << "\t\tReason: " << Reason << " \t\tAmount left: " << CurrentAmount <<endl;
myfile.close();