Advantage and disadvantage of array in c programming
Answers
Answered by
0
Advantage of array
Array is static structure. It means that array is of fixed size. The memory which is allocated to array can not be increased or reduced. Since array is of fixed size, if we allocate more memory than requirement then the memory space will be wasted.
Disadvantage of array
The memory which is allocated to array can not be increased or reduced. Since array is of fixed size, if we allocate more memory than requirement then the memory space will be wasted.
Similar questions