for example we have following code pragment
#include <iostream>
#include <ostream>
#include <vector>
using namespace std;
int main() {
vector<vector<int>>v;
return 0;
}
i have question as i see this form
v.push_back(11)
does not work
what will be correct?