C++
Programming and Technical
Can I free() pointers allocated with new? Can I delete pointers allocated with malloc()?
A: No!
Read Solution (Total 0)
C++ Other Question
Q:How do I allocate multidimensional arrays using new?
Why should I use new instead of trustworthy old malloc()?
A: Constructors/destructors, type safety, overridability.