Microsoft VC++ in debug mode shows memory leaks, although it doesn't show where your leaks are.
If you are using C++ you can never use explicitly you can always avoid using new , explicitly: you have all vector, string, auto_ptr auto_ptr and shared_ptr shared_ptr in your arsenal.
When using of new is unavoidable, try to hide it in constructor(destructor for delete), a constructor (and hide delete in a destructor); the same works for 3rd party APIAPIs.
