What does means * in array allocation before size declaration in C++? -
this question has answer here:
- how create array of pointers? 3 answers
table = new myobject*[table_size];
i know * declaring pointers variable , obtain value of variable pointer, mean?
it means know means :-)
the type myobject *
pointer myobject
object declaring array of said pointers, table_size
of them exact.
Comments
Post a Comment