I know how to create an array of structs but with a predefined size. However is there a way to create a dynamic array of structs such that the array could get bigger?
Here is how I would do it in C++
size_t size = 500; char* dynamicAllocatedString = new char[ size ];
Use same principal for any struct or c++ class.