|
From: c w. <not...@ya...> - 2008-12-24 04:10:43
|
Hello all,
I am very, very new to programming and needless to say I am having trouble with the simplest "Hello World" program. It compiles OK, but when it runs on Dev-CPP the ouptut window only stays open for a fraction of a second. Is there a setting that I am missing?
Below is the code:
#include<iostream>
using namespace std;
int main()
{
cout << "Hello World\n";
return 0;
}
I certainly hate bothering anyone with such a trivial request, but it is probably something so simple that an experienced programmer would spot in a flash. Thanks in advance!
--Bill
|