/* CSCI 261 HELLO WORLD EXAMPLE * * Author: Dr. Jeffrey Paone * * This program simply outputs "Hello World!" to the standard output */ // The include section adds extra definitions from the C++ standard library. #include // For cin, cout, etc. // We will (most of the time) use the standard library namespace in our programs. using namespace std; // Must have a function named "main", which is the starting point of a C++ program. int main() { cout << "Hello World!" << endl; // print "Hello World!" to the standard // output and end with a newline return 0; // signals the operating system that our program ended OK. }