Structure of a C++ program

Example.

/***********************************************
* Name:       helloworld.cxx
* Author:     Leo Liberti
* Source:     GNU C++
* Purpose:    hello world program
* Build:      c++ -o helloworld helloworld.cxx
* History:    060818 work started
***********************************************/

#include<iostream> 

int main(int argc, char** argv) {
  using namespace std;
  cout << "Hello World" << endl;
  return 0; 
} 

Leo Liberti 2008-01-12