Hey everybody! Im new to C++ and I have no experience with any other programming language. I downloaded a compiler from bloodshed.net and tried programming the 'hello world' program:
/*Hello world program.
Seth Koberg 02/09/05 */
#include <iostream.h>
int main()
{
cout<<"Hello World!";
return(0);
}
When I run the program, it terminates right after it opens up. I dont know why its doing this. Anybody have any thoughts on how I can fix this? Thanks