vector<int>myvec;
and
vector<int>myvec[20];
When i tried to do a standard push_back operation in second case(myvec.push_back(41))
i got a compile error.
I think i need to mention the position where 41
needs to be inserted i this case.Am I right?