Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
#include <iostream>
#include <vector>
#include <string>
using namespace std;
int main()
{
vector<string> msg {"Hello", "world!"};
for (const string& word : msg)
{
cout << word << " ";
}
cout << endl;
}
Leave a Reply