How would you fill a 2d vector with NULL.
I've tried doing
vector<vector<int> > data;
data (10, vector<int> (10,NULL))
But I get an error, and I've also tried setting it to NULL through two for loops and that produces an error as well.
Can someone point out what I'm doing wrong and show me how to fill a 2d vector with NULL?