Using vectors with struct help

Sentinel

Diamond Member
Jun 23, 2000
3,714
1
71
if I have a vector in a struct like

Struct Alpha {

std::vector<std::string> v;

};

how do I call that and modify it in the main

main() {

??

return 0;
}

I think I have to do something like ?? = {std::vector<std::string> (0)};