// HelloWorld.cc --> hh.cc // // We use the n e w C + + standard // Include file "iostream" is used instead of "iostream.h" #include // main() // { // std::cout << "Hello World" << std::endl; // } using namespace std; int main() { cout << "Hello World" << endl; }