What is the Maximum Size that an Array can hold?
Answer Posted / dinesh
The maximum array size can be as per the below formula
TOTAL_RAM-(HEAP_AREA+DATA_SECTION+BSS_SECTION+STACK_SIZE)
DATA and BSS section which are used.
HEAP & STACK which are allocated.
Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What are abstract data types in c++?
Write a program using shift_half( ) function to shift the elements of first half array to second half and vice versa.
What is class invariant in c++?
Can I learn c++ without c?
How do you initialize a string in c++?
What is an adaptor class in c++?
Which bit wise operator is suitable for turning off a particular bit in a number?
What is the keyword auto for?
What is constant in c++ with example?
what is C++ objects?
Implement stack operations with pointers with appropriate exception checks.
Describe Trees using C++ with an example.
How do you establish an is-a relationship?
What is singleton pattern in c++?
What is the output of the following program? Why?