How to dynamically allocate a 1D and 2D array in c.
We can create both static and dynamic array in C. These arrays can be one dimensional or multiple dimensional. In statically allocated array problem is that we have to specify the size of the array before the compilation. So the problem is generated when we don’t know how much size of the array required ahead […]
How to dynamically allocate a 1D and 2D array in c. Read More »