0
I have a doubt that came to me while learning about matrices of a dimension (no size). Follow an example:
#include <stdio.h>
int main(){
int matriz[] = {1,2,3};
}
My question is: and if I then want to add elements to this list by putting, for example, 10 elements instead of 3, there will be no memory breach problem? What is the advantage of using matrices with no set size? Thank you.