hey i am trying to detect leaks in visual studio using :
#define _CRTDBG_MAPALLOC
#include <stdlib.h>
#include <crtdbg.h>
and in the end of the main i am typing :
_CrtDumpMemoryLeaks();
when i do all of this i am getting the the memoryleaks (what inside them) but not the places that the allocates were made , can u please help me with the command that show where were the allocated been made , thanks in advance.