What is the Maximum Size that an Array can hold?
Answer Posted / alok
Dude in C memory management we have for segments namely
data code heap and stack. any local variable resides in
stack. Hence array should be less than size of stack. Please
refer memory models in C to find stack size. similar is true
for global array. That will reside in data segment.
| Is This Answer Correct ? | 4 Yes | 14 No |
Post New Answer View All Answers
What are the new features that iso/ansi c++ has added to original c++ specifications?
Write a program which uses Command Line Arguments
What is the role of copy constructor in copying of thrown objects?
How do you define a class in c++?
Is c++ a high level language?
What does ios :: app do in c++?
Do vectors start at 0 c++?
What is the difference between public and private data members?
In the derived class, which data member of the base class are visible?
Can non-public members of another instance of the class be retrieved by the method of the same class?
What are arithmetic operators?
What is purpose of new operator?
Differentiate between a template class and class template in c++?
How do you clear a map in c++?
How many namespaces are there in c++?