it remembers the size of array from declaration ? if yes then where it stores the length of the array ?
it doesn't really
that's up to you to keep track of
it's part of the type. int a[20]; a's type is int[20]. int[20] decays into int * when u use it in an expression other than as an operand to the sizeof operator.
Обсуждают сегодня