Output

For some people, the best way to learn how to program is by looking at examples. For others, you can show them the commands and that person can put it all together. So, I'm going to try a little bit of both to see what you're comfortable with.

Here's the classic ``hello world'' program :

// file : hello.C
#include <iostream.h>
main()
{
  cout << "Hello World" << endl;
}

See a complete discussion of Hello World.