Somehow this call to free()
is not working. I ran this application on Windows and followed the memory using in Task Manager, but saw no reduction in memory usag
Note that the Task manager will show the memory "borrowed" by libc from the system. But not all mallocs will go through libc to the operating system and similarly not all free will free the system memory.
Usually, libc will allocate memory in larger chunks to supply for several malloc calls.
You can not assume that just after doing the free
the memory will be returned back to OS. Generally the CRT implementation have some optimization because of which they may not return this memory immediately. This allows the CRT to allocate the subsequent memory allocation requests in a faster way.
Typical C implementations do not return free:d memory to the operating system. It is available for use by the same program, but not to others.