I think I\'ve got a good grasp on how to handle memory in C++ but doing it in C is different I\'m a bit off.
In C++ I\'ve got constructors and destructors, I\'ve got the
Well in C you have to do all you memory management manually as you already have discovered. That should be no surprise.