View Output?

I'm using Code::Block v10.05, and I'm using the very first script;

#include <iostream>
using namespace std;

int main()
{
cout << "Hello World!";
return 0;
}


And, I hit the play button, but I don't know were to view 'Hello World!'... Any help? And sorry for sounding so clueless...

.:Ðing:.
Is this what you are looing for?: http://www.cplusplus.com/forum/beginner/1988/
#include <iostream>
#include <limits>
usign namespace std;

int main ()
{
cout <<
"Hello World! ";
cout <<
"I'm a C++ Program."
return 0;
std::cout << "Press ENTER to continue...";
std::cin.ignore( std::numeric_limits<std::streamsize>::max(), '\n' );
return 0;
}



That's what I got, and... Still no output... Sorry, I'm new to this.
"First - Debug" uses an invalid compiler. Probably the toolchain path within the compiler options is not setup correctly?! Skipping...


That's what I get as output, what should I do? Probably should have posted that at first..
The second piece of code is nonsense, so you should go back to the first one.
Did you install the Code::Blocks/MinGW bundle?
Yes, I just re-installed it again and it won't work...
Topic archived. No new replies allowed.