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
Explain the uses of static class data?
What is encapsulation in C++? Give an example.
. If employee B is the boss of A and C is the boss of B and D is the boss of C and E is the boss of D. Then write a program using the Database such that if an employee name is Asked to Display it also display his bosses with his name. For eg. If C is displayed it should also display D and E with C?
Why do we need templates?
Difference between inline functions and macros?
Can I uninstall microsoft c++ redistributable?
What is a catch statement?
Write a C++ Program to check whether a number is prime number or not?
How do you write a function that can reverse a linked-list?
What are the two types of polymorphism?
what is pre-processor in C++?
What is increment operator in c++?
Is java a c++?
What is a class template in c++?
What do you mean by const correctness?