// print a msg Hello word //#include // //int main(){ // std::cout << "Hello World!"; // return 0; //} #include #include #include using namespace std; int main() { vector msg {"Hello", "C++", "World", "from", "VS Code", "and the C++ extension!"}; for (const string& word : msg) { cout << word << " "; } cout << endl; }