Untitled
unknown
plain_text
5 months ago
186 B
13
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