vector<vector <vector<char>>> Sub;
Sub[0][0].push_back(s[0]);Sub[0][0].push_back('\0');
Sub[0][1].push_back('\0');
I have the above code and it says "vector subscript insaccessible" for the assignments.What could the reason?
Thanks in advance,
Prasanna