I’m using Qt Creator 2.4.1 based on Qt 4.7.4
I’ve made a simple “Hello, world” program
int main()
{
std::cout << “Hello World!” << std::endl;
}
But when I run it, nothing appears in the Application output, how to enable it?
↧