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
Which operator cannot be overloaded c++?
Which of the following is not a valid declaration for main() a) int main() b) int main(int argc, char *argv[]) c) They both work
What is the best way to take screenshots of a window with c++ in windows?
If you don’t declare a return value, what type of return value is assumed?
Which programming language is best to learn first?
List the special characteristics of constructor.
What is a flag in c++?
Explain the concept of copy constructor?
Is main a class in c++?
write a corrected statement in c++ so that the statement will work properly. x = y = z + 3a;
What are abstract data types in c++?
What is the best c++ compiler?
Define the process of handling in case of destructor failure?
What is the role of copy constructor in copying of thrown objects?
What is a syntax in c++?