Simple Dynamic Array in C
Jan 13, 2023 · 4 min read · Vectors/Dynamic Arrays are one of the most important data structures used in almost all programs. In C there is no notion of a dynamic array so the programmer must create their own. There are many ways to do this but my favorite way is Sean Barret's ...
Join discussion