|
-
February 11th, 2004, 11:43 AM
#3
Originally posted by Paul McKenzie
Code:
#include <vector>
#include <string>
typedef std::vector<std::string>S1;
typedef std::vector<S1> S2;
typedef std::vector<S2> S3;
int main()
{
S3 a(100, S2(100, S1(100)));
}
Regards,
Paul McKenzie
Thanks Paul very much,
But I still have another question that, I do not know how to use that array a, if it is declared as what you have taught me, would you please spend some time explaining a little more ??
Thank You,
Regards,
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|