What is the difference between vector<int*> a and vector<int> *a? I have problems working with pointer and vectors. I can fill the vector with this code.
plate p;
vector<plate*> A;
A.push_back(&p);
But I can't find out how to work with the values after that.