Hi!
I'm a student learning C language. During my exercise I have faced a weird problem(atleast to me).
I have encountered two declarations:
int size;
int arr[size];
I'm unable to figure out the actual dimension of the array and its lenght as the variable size
is only declared not defined; meaning it has not been assigned any value yet.
Another statement which maded me scratch my head was:
int siy[2+3]
What is the dimension and length of this array?
I'll be very thankful, if you'll help me........