// Fig. 1.2: fig01_02.cpp // are comments posted by the developer to help others while asessing code // A first program in C++ #include // This points to the header file to run, a message to the preprocessor int main() // This is a function { // These are function brackets , to be included start and end for all functions cout << "Welcome to C++!\n\n"; // computer output between the parenthesis the << are insertion tags return 0; // indicate that program ended succesfully }