Computer Science, asked by chandelvanshika2912, 2 months ago

What are the limitations of Multidimensional Array?

Answers

Answered by taranpreet20
3

Limitations of arrays, occupies an amount of memory that is proportional to its size, independently of the number of elements that are actually of interest; Limitations of Array : Array is Static Data Structure and memory cannot be allocated at run time.

Answered by Anonymous
4

\LARGE{\underline{\underline{\sf{Answer:}}}}

The exact answer may depend on the level of support for multidimensional arrays in a specific programming language. Generally, multidimensional arrays are harder to handle, particularly if they are set-up dynamically.

In languages like C or C++ you do not get compiler support for handling an array without the number of dimensions known at compile time. If you want to handle such a case you must create a single-dimensional array and simulate multiple dimensions by programmatically partitioning that array.

Similar questions