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 near, far and huge pointers? How many bytes are occupied by them?
Explain what happens when a pointer is deleted twice?
Write a program in c++ to print the numbers from n to n2 except 5 and its multiples
What does new return if there is insufficient memory to make your new object?
If dog is a friend of boy, and terrier derives from dog, is terrier a friend of boy?
What is the difference between #import and #include in c++?
What is an inline function in c++?
What does the nocreate and noreplace flag ensure when they are used for opening a file?
How many namespaces are there in c++?
What is a .lib file in c++?
If you hear the cpu fan is running and the monitor power is still on, but you did not see anything show up in the monitor screen. What would you do to find out what is going wrong?
What is the size of integer variable?
How to get the current position of the file pointer?
Write a function to find the nth item from the end of a linked list in a single pass.
What language does google use?