So I just started programming, and the first app I made is supposed to print 'Hello World!' on my screen. So I copied the code
#include <iostream>
int main()
{
std:: cout << "Hello World!" << std:: endl;
return 0;
}
But now I'm wondering: Where can I see it? Where can I see 'Hello World!' being printed on a screen?
p.s. - I'm using Microsoft Visual c++ 2010 express