Regular 2D array vs Dynamically allocated 2D array
Does a regular array need to be initialized when it is created? If it is
default initialized is it not possible to change the elements in an array?
When creating a 2D array, all the examples I see are using dynamic memory.
Is it because the dynamically allocated 2D array does not need to be
initialized. Is it possible to fill the array elements after declaring a
regular 2D array?
No comments:
Post a Comment