Hi guys. I am trying to making an array of list::<PointObj>::iterator, so this is what I did: PointListIter* pointIterArr= (PointListIter*) malloc(1000*sizeof(PointListIter));
where PointListIter is std::list<PointObj*>::iterator
However I cannot assign an iterator to the any element of the array. When I run a for loop: