#include<iostream>
#include<fstream>
using namespace std;
int main()
{
ofstream thefile("");
if (thefile.is_open()){
}
else
{
cout<<"you meassed up"<<endl;
}
thefile<<"lo love the /n";
thefile.close();
}
#include<iostream> #include<fstream> using namespace std; int main() { ofstream thefile(""); if (thefile.is_open()){ } else { cout<<"you meassed up"<<endl; } thefile<<"lo love the /n"; thefile.close(); }
0 Comments 0 Shares