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
Tell me can a pure virtual function have an implementation?
program explaining feautures of c++
Name the debugging methods that are used to solve problems?
What are disadvantages of pointers?
What is a dll entry point?
What is increment operator in c++?
What is c++ library?
How many keywords are used in c++?
what are the characteristics of Class Members in C++?
Describe exception handling concept with an example?
What is the purpose of ios::basefield in the following statement?
an operation between an integer and real always yeilds a) integer result b) real result c) float result
Differentiate between a copy constructor and an overloaded assignment operator.
What does n mean in c++?
Describe linkages and types of linkages?