A long, long time ago, I learned about malloc() in C. I could make a buffer like this: char *buffer = malloc (1024); …use it, then release it when I was done like this: free (buffer); I have discussed malloc here in the past, including a recent post about an …
From: Retro Roundup