inisizing vektor 2D di CPP

  // Create a vector containing n row and m columns
  vector<vector<int> > vec( n , vector<int> (m, 0));  
Precious Panda