If storage class is missing in the array definition, by default it will be taken to be ____________.
If storage class is missing in the array definition, by default it will be taken to be either automatic or external depending on the place of occurrence.
If it is coming within a function, the storage class will be taken to be automatic. Otherwise external.
Every C variable has a storage class and a scope. It also determines the scope which specifies the part of the program over which a variable name is visible, i.e. the variable is accessible by name.
An array is a collection of data items, all of the same type, accessed using a common name.