What is the precise data type of any array of 20 vectors of strings?

What is the precise data type of any array of 20 vectors of strings?


Is this correct?

anyArray<std::vector<string>, 20>;
std::array<std::vector<std::string>, 20> anyArray;
Thanks!
Topic archived. No new replies allowed.