Files
VSC/C++/_prova/001.cpp
T
claudio 368d6fafea Issue
Code backup
2026-05-10 16:59:01 +02:00

25 lines
405 B
C++

// print a msg Hello word
//#include <iostream>
//
//int main(){
// std::cout << "Hello World!";
// return 0;
//}
#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;
}