17 lines
284 B
C++
Executable File
17 lines
284 B
C++
Executable File
#include <iostream>
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
using namespace std;
|
|
|
|
int main()
|
|
{
|
|
vector<string> msg {"Hello", "C++", "World", "from", "VS Code", "and the C++ extension!"};
|
|
|
|
for (const string& word : msg)
|
|
{
|
|
cout << word << " ";
|
|
}
|
|
cout << endl;
|
|
}
|