Thread
:
C++ Help Please
View Single Post
07-05-2005, 12:27 PM
#
6
(
permalink
)
Chase
CECS Major
Join Date: Jul 2005
Location: Louisville, KY
Posts: 387
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;
}
__________________
Your answer is just a few keystrokes away.
Chase
View Public Profile
Send a private message to Chase
Visit Chase's homepage!
Find More Posts by Chase