Also bei mir funktioniert es so:
Code:
#include "stdafx.h"
#include <iostream>;
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
cout << "Hallo, Welt!" << endl;
cin.get();
return 0;
}
Vielleicht ist es am /n gescheitert, mach stattdessen
Und um sich das lästige std:: zu ersparen, verwende das:
Code:
using namespace std;
Damit dein Programm danach nich sofort beendet wird:
Ich hoffe ich konnte helfen,
mfg elementskate