in c++ I have
vector > table;
How can I resize vector so that it has 3 rows and 4 columns, all zeros?
Someth
vector > table(3, vector(4,0));
This creates a vector with 3 rows and 4 columns all initialized to 0