New Paste :: Recent Pastes:: Add Line Numbers
A Paste by godecho
#include <fstream> #include <cstdio> int main(int argc, char **argv) { FILE* blert = 0; blert = fopen(\"this\\nis\\nlame\", \"w\"); if(blert) { printf(\"hah.\\n\"); fclose(blert); } else { printf(\"nope\"); } return 0; }