bah, this will take forever to explain all of the reasons why #include <iostream> is better than #include <iostream.h>. Also, instead of:
using namespace std;
You could just have:
using std::cout;
using std::endl;
using std::cin;
using std::cerr;
etc...
or you could do:
int main ()
{
std::cout << "Hello World" << std::endl;
}
thought that that might be interesting if you werent already aware of it...
