Array implementation of Stack is not dynamic, which of the following statements supports this argument?
Array implementation of Stack is not dynamic, which of the following statements supports this argument? Correct Answer space allocation for array is fixed and cannot be changed during run-time
You cannot modify the size of an array once the memory has been allocated, adding fewer elements than the array size would cause wastage of space, and adding more elements than the array size at run time would cause Stack Overflow.
মোঃ আরিফুল ইসলাম
Feb 20, 2025