Untitled
unknown
plain_text
9 months ago
186 B
14
Indexable
#include <iostream>
#include <fstream>
using namespace std;
int main() {
ofstream newF;
newF.open("sample.txt");
newF << "Why Tho" << 1 << endl;
newF.close();
return 0;
}Editor is loading...
Leave a Comment