vector in C

Implement Vector in C

In my previous article, I have explained how we can create a dynamic array in C.  But my reader says to write an article to create a vector in C. Basically vector is a dynamic array that has the ability to resize itself automatically when an element add or removed from the vector. A vector

Implement Vector in C Read More »