
-----------------------------------
yuethomas
Sat Apr 12, 2003 11:32 am

C++ Introduction
-----------------------------------
C++ is no different than other languages. Here's the hello world program in C++:

#include  // this line imports the stuff needed for screen I/O

void main() { // function declaration; main() is always executed when a program runs
    cout 