Untitled

 avatar
unknown
plain_text
6 days ago
186 B
11
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;
}
Leave a Comment