home
clear breadcrumbs
search
login
 
string vector
#include
#include
#include
using namespace std; int main() { vector
msg {"H", "e", "l", "l", "o", " World!"}; for (const string& word : msg) { cout << word; } cout << endl; }