Practice Problem 2: Hello World

Objective: To learn how to write, compile, execute, and turn in a C++ program

I showed you the following program in class:
    /* Craig Persiko
       hello.cpp

       Simple Hello World program
    */

    #include <iostream>
    using namespace std;

    int main()
    {
      cout << "Hello, World!\n"; // Display the string.
      return 0;
    }

Here is your assignment:

Return to main CS 110A page