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 is iomanip c++?
What do you mean by inheritance in c++? Explain its types.
When is the copy constructor called?
What is friend class in c++ with example?
What do you mean by const correctness?
Does c++ have string data type?
Write a program using display() function which takes two arguments.
If horse and bird inherit virtual public from animal, do their constructors initialize the animal constructor? If pegasus inherits from both horse and bird, how does it initialize animal’s constructor?
What's c++ used for?
Explain the differences between private, public and protected and give examples.
Can I learn c++ as my first language?
When should overload new operator on a global basis or a class basis?
What is the difference between the parameter to a template and the parameter to a function?
When must you use a pointer rather than a reference?
How do I tokenize a string in c++?