-
-
-
-
-
-
Class of computer
-
-
Recent Updates
-
#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 SharesPlease log in to like, share and comment! -
More Stories