Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

What is the Maximum Size that an Array can hold?

Answer Posted / chandra

On Windows platform (32 bit) the max array size is FFFFFFFF.


so if you give int arr[0x3FFFFFFF]; it works in VC++.

and if you try arr[0x40000000]; it gives following error:

error C2148: total size of array must not exceed ffffffff
bytes


We came to this value(3FFF FFFF) by dividing FFFFFFFF (2
power 32) by 4 because each int is 4 byte. so for char
array this value will be full FFFF FFFF.

Is This Answer Correct ?    54 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is constructor in C++?

1143


What new()is different from malloc()?

1162


Explain the difference between struct and class in terms of access modifier.

1222


How do I run a program in notepad ++?

1168


Explain mutable storage class specifier.

1126


Write a program using shift_half( ) function to shift the elements of first half array to second half and vice versa.

1378


Write a program to interchange 2 variables without using the third one.

1107


How static variables and local variablesare similar and dissimilar?

1093


Briefly describe a B+ tree. What is bulk loading in it?

1396


How do you invoke a base member function from a derived class in which you’ve overridden that function?

1168


What number of digits that can be accuratly stored in a float (based on the IEEE Standard 754)? a) 6 b) 38 c) An unlimited number

1334


What are the operators in c++?

1170


What is std namespace in c++?

1228


What's the order in which the local objects are destructed?

1307


What is the use of c++ programming language in real life?

1092