Okay, I just started a tutorial online,
http://www.cprogramming.com. I started it, and compiled and ran. Then nothing happened. I used the same code they used. I don't understand why nothing is happening, I would expect some sort of window to pop up or something. Here's the code so you don't have to go look for it:
Quote:
#include <iostream>
using namespace std;
int main()
{
cout<<"HEY, you, I'm alive! Oh, and Hello World!\n";
cin.get();
return 1;
}
|