Skip to content

Instantly share code, notes, and snippets.

@Irwin1985
Created June 10, 2022 16:20
Show Gist options
  • Select an option

  • Save Irwin1985/f7370d0cf07bdb54bc4d85c69937431d to your computer and use it in GitHub Desktop.

Select an option

Save Irwin1985/f7370d0cf07bdb54bc4d85c69937431d to your computer and use it in GitHub Desktop.

Crear un fichero

#include <iostream>
#include <fstream>

int main() {
  ofstream MyFile("filename.txt"); 
  
  MyFile << "First line\n";
  MyFile.close();
  
  return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment