What is the Maximum Size that an Array can hold?
Answer Posted / mousam sahu
array is a derived data type which is used to store
different data items of same data type and same purpose
with a common name
array gives static memory allocation it means
the size of array can not be changed during programe
execution .
array index always starts from zero andends at (n-1) if
the array size is n.
| Is This Answer Correct ? | 3 Yes | 15 No |
Post New Answer View All Answers
Can union be self referenced?
What is copy constructor? Can we make copy constructor private in c++?
What is the use of "new" operator?
How the memory management in vectors are being done. What happens when the heap memory is full, and how do you handle it ?
What are the advantages of using typedef in a program?
What is null pointer and void pointer?
Do you know the problem with overriding functions?
Why is swift so fast?
Define friend function.
If a function doesn’t return a value, how do you declare the function?
Can malloc be used in c++?
What is c++ similar to?
What are dynamic type checking?
Why struct is used in c++?
Why do we use templates?