|
|
|
© 1998 by Bobby Griggs.
// This is the first program for Computer Programming.
// The program displays "Hello World" on the monitor. It then waits
// for the enter key to be pressed to terminate execution of the
// program.
// Win32 console application
#include < iostream.h >
#include < stdio.h >
void main(void)
{
cout << "Hello World!" << endl;
cout << "Man, this is a chingy program!" << endl << endl;
cout << "Hit enter to continue ... " << endl;
getchar();
return;
}
|