What is the Maximum Size that an Array can hold?
Answers were Sorted based on User's Feedback
Answer / leo
It belongs toich s us the size of the RAM . which is used
in the particular system.
| Is This Answer Correct ? | 0 Yes | 3 No |
Answer / manoj
The size in Arrays is basically of type int. An int in java
is of 32 bits, so the maximum size we can give is 2,147,483,647.
| Is This Answer Correct ? | 0 Yes | 4 No |
Answer / ashif ali
infinity and it is also depend on the size of the program.
| Is This Answer Correct ? | 0 Yes | 5 No |
Answer / guest
the array can hold only the no of elements given in braces
| Is This Answer Correct ? | 0 Yes | 5 No |
Answer / namitha
An array can hold the declared number size..
that is the size specified by the user
| Is This Answer Correct ? | 0 Yes | 6 No |
Why iomanip is used in c++?
Difference between Top down and bottom up approaches for a given project ?
14 Answers BSNL, CSC, HCL, HP, IIT, Infosys, Siemens,
Write my own zero-argument manipulator that should work same as hex?
Define virtual constructor.
Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);
which one is equivalent to multiplying by 2:Left shifting a number by 1 or Left shifting an unsigned int or char by 1?
Write a C++ Program to check whether a number is prime number or not?
What is a driver program?
write a program that takes 5 digit no and calculate 2 power that no and print it.
What is null c++?
Can I create my own functions in c++?
Do inline functions improve performance?