Skip to content
Snippets Groups Projects
fichier-ecriture.cpp 304 B
Newer Older
Nicolas M. Thiéry's avatar
Nicolas M. Thiéry committed
#include <fstream>
using namespace std;

int main() {
    ofstream fichier;                           // Déclaration
    fichier.open("bla.txt");                    // Ouverture
    fichier << "Noel " << 42 << endl;           // Écriture
    fichier.close();                            // Fermeture
}