#including <iostream>
using namespace std;
int main()
{
cout << "Wtf is this" << endl;
return 0;
}
English
-
You need a pause in there... Also, cpp master race.
-
Edited by Banned n3rd: 6/28/2014 3:54:57 PM<iostream>* Also, you need a system("pause"); between your cout and your return.
-
Wait why do I need a pause? I don't think I've ever used that.
-
Without a pause or an input statement, the program will just execute and quit. It will only display the message for as long as it takes the program to read your return statement.
-
Oh ok, thanks man.
-
No problem.