The simplest way to implement a resizeable array in C is calling realloc each time you need to add a new item. However, this method is slow, especially under Windows.
The simplest way to implement a resizeable array in C is calling realloc each time you need to add a new item. However, this method is slow, especially under Windows.