//#include // //using namespace std; //int main(){ // // cout << "Hello world! \n"; // return 0; //} #include // function main begins program execution int main() { std::cout << "Welcome to C++!\n"; return 0; // indicate that program ended successfully } // end function main