Thread: C++ Help Please
View Single Post
Old 07-05-2005, 12:27 PM   #6 (permalink)
Chase
Chase's Avatar
 
CECS Major

Join Date: Jul 2005

Location: Louisville, KY

Posts: 387

Chase is on a distinguished road

Send a message via MSN to Chase Send a message via Yahoo to Chase Send a message via Skype™ to Chase
Default

If you want to print "Hello World" use the following code and compile:

#include <cstdlib>
#include <iostream>

using namespace std;

int main(int argc, char *argv[])
{
cout << "Hello World\n\n";

system("PAUSE");
return EXIT_SUCCESS;
}
Chase is offline