Hi, How to free the memory if memory is allocation using memset. suppose, ulong m_ularr[]; //declaration in header file //In constructor we allocate memory as memset(m_ularr, 0, sizeof(m_ularr)); Kindly help me how to free the memory in destructor for this one.
Freda