cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
General C++ Programming
What is the precise data type of any arr
What is the precise data type of any array of 20 vectors of strings?
Feb 27, 2017 at 11:23pm UTC
dtfskull
(3)
What is the precise data type of any array of 20 vectors of strings?
Is this correct?
anyArray<std::vector<string>, 20>;
Feb 27, 2017 at 11:46pm UTC
Pattako
(74)
std::array<std::vector<std::string>, 20> anyArray;
Feb 27, 2017 at 11:49pm UTC
dtfskull
(3)
Thanks!
Topic archived. No new replies allowed.