I have list pointer in c:
list<int> * pointer = (list<int> *)malloc(sizeof(list<int>));
when I try:
pointer->push_back(1);
I get error, because malloc doesn't call list constructor. I know to do this in c++ with:
list<int> * pointer = new list<int>();
but i need this in c?
Does anybody know solution for this?
std::list<>is a feature exclusive to C++, not C. And usingmallockind of destroys the point of having the standard container classes with respect to memory management. If you need to usestd::list<>, you have to use C++. – In silico Dec 28 '10 at 9:41