Is it better to allocate one large block of memory using malloc or a linked list of structures each individually allocated using malloc?
I imagine that the first is faster but the second has a better chance of working because it can be split up.
Any ideas?
Start Free Trial