inf-kswo/C/helloworld.cpp
2025-04-24 08:20:09 +02:00

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;
}