Looking at some code my professor gave me and I don't understand what is happening. I am new to programming and completely lost.
vector <_Account*>*myvector = nullptr;
So I know he made a vector, and I know of an existing class called Account
so is this a vector
of pointers to an Account
objects? and I don't know what the second asterisk does?