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 the advantages of using const reference arguments in a function?
Is c++ proprietary?
How to declare a pointer to an array of integers?
Specify different types of decision control statements?
Why the usage of pointers in C++ is not recommended ?
How long will it take to learn programming?
How is data hiding achieved in c++?
What are pointers used for c++?
What are c++ data types?
What is the best ide for c++?
Explain explicit container.
What do you mean by volatile and mutable keywords used in c++?
what does the following statement mean? int (*a)[4]
What is a NULL Macro? What is the difference between a NULL Pointer and a NULL Macro?
What is c++ array?