What is the Maximum Size that an Array can hold?

Answers were Sorted based on User's Feedback



What is the Maximum Size that an Array can hold?..

Answer / yogesh jain

IT DEPENDS UPON THE RAM MEMORY

Is This Answer Correct ?    6 Yes 15 No

What is the Maximum Size that an Array can hold?..

Answer / alok

Dude in C memory management we have for segments namely
data code heap and stack. any local variable resides in
stack. Hence array should be less than size of stack. Please
refer memory models in C to find stack size. similar is true
for global array. That will reside in data segment.

Is This Answer Correct ?    4 Yes 14 No

What is the Maximum Size that an Array can hold?..

Answer / vikas anand

it depend upon program

Is This Answer Correct ?    3 Yes 15 No

What is the Maximum Size that an Array can hold?..

Answer / mousam sahu

array is a derived data type which is used to store
different data items of same data type and same purpose
with a common name
array gives static memory allocation it means
the size of array can not be changed during programe
execution .
array index always starts from zero andends at (n-1) if
the array size is n.

Is This Answer Correct ?    3 Yes 15 No

What is the Maximum Size that an Array can hold?..

Answer / awadhesh

infinite

Is This Answer Correct ?    4 Yes 17 No

What is the Maximum Size that an Array can hold?..

Answer / sivasankar

infinity

Is This Answer Correct ?    6 Yes 24 No

What is the Maximum Size that an Array can hold?..

Answer / naresh

its size is N-1, If it starts from 0.

Is This Answer Correct ?    6 Yes 27 No

What is the Maximum Size that an Array can hold?..

Answer / harish

it depends on User Application

Is This Answer Correct ?    2 Yes 24 No

What is the Maximum Size that an Array can hold?..

Answer / sahadev tarei

How many bite available in your ram

Is This Answer Correct ?    10 Yes 45 No

What is the Maximum Size that an Array can hold?..

Answer / varsha vilas kalebag

n numbers

Is This Answer Correct ?    5 Yes 56 No

Post New Answer

More C++ General Interview Questions

Is map ordered c++?

0 Answers  


Am studying basic c++ programming, have been given the following assignment. Design a linear program to calculate the maximum stress a material can withstand given a force and a diameter of a circle. To find the required area pi should be defined. Have most of the program sorted out but am at a loss as to how to show the calculations required. Can anyone help?

0 Answers  


What is size of a empty class?

7 Answers   Microsoft, Tata Elxsi, Wipro,


What is vector string in c++?

0 Answers  


Why do we use using namespace std in c++?

0 Answers  






Draw a flow chart and write a program for the difference between the sum of elements with odd and even numbers. Two dimensional array.

0 Answers  


Define what is constructor?

0 Answers  


Which of the following operator cannot be overloaded?

2 Answers   TCL,


What is a float in c++?

0 Answers  


Why preincrement operator is faster than postincrement?

5 Answers  


What are function poinetrs? where are they used?

1 Answers   CTS,


Can java be faster than c++?

0 Answers  


Categories