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
What is a class definition?
What is the role of C++ shorthand's?
What's the order in which the objects in an array are destructed?
What is setfill c++?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?
How much do coding jobs pay?
What is a tuple c++?
Should I learn c or c++ or c#?
What are the classes in c++?
Show the application of a dynamic array with the help of an example.
What is the most common mistake on c++ and oo projects?
How the memory management in vectors are being done. What happens when the heap memory is full, and how do you handle it ?
Does dev c++ support c++ 11?
What is class invariant in c++?
Will the following program execute?