Switch cases and file handling[code] #include <iostream> #include <fstream> using namespace std; int write(){ ofstream myfile...
Switch cases and file handling[code] int write(){ ofstream myfile; myfile.open("derp.txt",ios::app); if(myfile) { ...
Switch cases and file handlingWhen I apply that, it tells me that the file is opened, but still doesn't reach the second call to g...
Switch cases and file handlingWhen I add the brackets to line 19, the file handling doesn't get processed still
Switch cases and file handlingthe getline(cin,a) is taking a user input, and storing it to the string a; call, allowing the user i...
This user does not accept Private Messages