Skip to content

Instantly share code, notes, and snippets.

@native-m
Last active January 19, 2016 08:40
Show Gist options
  • Save native-m/8eb0956ef6ae5e9f6b37 to your computer and use it in GitHub Desktop.
Save native-m/8eb0956ef6ae5e9f6b37 to your computer and use it in GitHub Desktop.
#include <iostream>
#include <fstream>
using namespace std;
int main() {
ofstream fileTXT;
fileTXT.open("filecontoh.txt");
fileTXT << "Teks disini\n";
fileTXT.close();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment