Hjælp til c++
Er ny til c++ og vl gerne have nogle links til tutorials som ville kunne hjælpe mig har selv prøvet at lave et c++ script som jeg gerne vil validere:// raws c++
#include <iostream>
#include <fstream>
using namespace std;
int main () {
cout << "Tekst vil blive skrevet til info.txt !";
ofstream myfile;
myfile.open ("info.txt");
myfile << "programi0.\n";
myfile.close();
cout << "udført!";
return 0;
}