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,