What is the Maximum Size that an Array can hold?
Answer Posted / bipin pandey
It depends on your pc's memory size.
for example,if your declared an array: int array[3001][3001]
it needs 32bit*3001*3001=288M memory space.
in such way,i can calculate the Maximum size of array i can
i use
according
to our array type and memory size.
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is the use of endl in c++ give an example?
What does it mean to declare a member function as static?
What is c++ good for?
Eplain extern keyword?
Write a program which is required to process the time of a clock in hours and minutes, entered from the keyboard. With this program, there are two requirements for any data entered by a user: 1. The data must be of the correct type (in this case, two ints). 2. The data must be in the correct range: this means that, for the minutes, negative numbers and any number above 59 must be rejected; for the hours, negative numbers and any number above 23 must be rejected. Output error message for invalid data input. Output the time one and a half hour after the time input. i.e. Hour: 22 Min: 32 One and a half hour after 22:32 is 00:02
What operators can you overload in c++?
What does floor mean in c++?
How do you master coding?
What is static function? Explain with an example
Why do we use structure in c++?
What is a responder chain?
What is the importance of mutable keyword?
What is late binding c++?
What is an accessor in c++?
Difference between inline functions and macros?