+ 3
What is the differencr between static and dynamic array in c++?
2 ответов
+ 5
Static: You initialise it with a specified size and you can never change it.
Dynamic: The size is variable, so you can just keep appending elements until you run out of memory