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
Explain one method to process an entire string as one unit?
What's the most powerful programming language?
Is it possible to write a c++ template to check for a function's existence?
Who discovered c++?
What is difference between c++ and c ++ 14?
Can we overload operator in c++?
Is vector a class in c++?
What is the purpose of template?
Where do I find the current c or c++ standard documents?
Explain how would you handle a situation where you cannot call the destructor of a local explicitly?
Explain the static member function.
What is virtual destructor ans explain its use?
give me an example for testing a program showing the test path .show how the test is important and complex.
What are the effects after calling the delete this operator ?
What is a constant? Explain with an example.