/* Greet the world. */ /* Class example of output in C++ program */ /* April 4, 2008 */ /* Shannon I. Steinfadt */ #include //preprocessor instruction int main() { //Output "Hello World!" std::cout << "Hello World!\n"; return 0; }