Computer Science, asked by devsahus6805, 1 year ago

What is the limitation on array of char?

Answers

Answered by smartbrainz
11

Limitation on an array of char:

  • Arrays are used to store and manipulate collections of elements.
  • Once declaring an array it is not possible to modify its size.
  • An Array supports only elements of the identical "data type" and the same size.
  • The task of adding and removing is difficult since the elements are stored as adjoining memory locations.
  • An array is of static data type structure, hence the number of elements stored in it are fixed.

Similar questions