Write hello world but having problem seeing output

I know this post was already been done. I am still confused about it.
#include <iostream>
using namespace std;
int main ()
{
cout << "Hello World!";
return 0;
}

I added this to VB studio 10 express and it said succeed but I did not see an output on my input. I tried almost everything that was suggested but it is still not coming.


I would appreciate any suggestion.
You may need to pause the program at the end. It may be closing before you see anything.

I usually do a:

cin >>pause_ch;

toward the end, until such time as it becomes a pita for running.
addcin.get(); before return 0
thanks!
Topic archived. No new replies allowed.