What is the Maximum Size that an Array can hold?
Answer Posted / rajat paliwal
Actually it depends on which mode you are programming.
if ur workin in normal c complier i.e. in dos (16 bit)
then maximum size for
char-> 65535
int ->65535/2=32767
float->32767/2=16382
..
however if you are working in 32 bit operating enviroment
like in VC++
then the maximum size for char = 2 raisec to power 32..
like that..
Is This Answer Correct ? | 14 Yes | 4 No |
Post New Answer View All Answers
What is oop in c++?
What is microsoft c++ redistributable?
What is the cout in c++?
What are signs of manipulation?
Is there any difference between int [] a and int a [] in c++?
Is it possible to use a new for the reallocation of pointers ?
Why do we use constructor?
What is array give example?
What is the use of typedef?
How does atoi function work?
What does floor mean in c++?
What is the arrow operator in c++?
What are formatting flags in ios class?
Is vector a class in c++?
What are advantages of c++?