If I have a snippit of my program like this:
struct Node *node; while(...){ node = malloc(100); //do stuff with node }
This means t
You can not. You need to store all the pointer to free the memory. if you are saving those pointer somewhere then only you can free the memory.