// MyFirstProgram_v2.cpp // Printing a line with multiple statements. #include using namespace std; // function main begins program execution int main() { cout << "Welcome "; cout << "to C++!\n"; return 0; // indicate that program ended successfully } // end function main