What is the Maximum Size that an Array can hold?
Answers were Sorted based on User's Feedback
Answer / pankaj verma
The above answer given by rajat paliwal is absolutely
correct.Thanx to rajat paliwal.finally i got a correct
answer
Is This Answer Correct ? | 1 Yes | 2 No |
Answer / nowsheen
I think the above answer by Chandra is correct.. thanks
Chandra..
Is This Answer Correct ? | 0 Yes | 1 No |
Answer / puneet anuj shukla
depend upon ram,compiler,programer.hence it con not be
infinite
Is This Answer Correct ? | 0 Yes | 1 No |
Answer / 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 |
Answer / vikash anand
Available RAM + on disk memory (used as extention to RAM).
Ideally why do u need so much capacity. Why do u want to
store so much value.
Is This Answer Correct ? | 0 Yes | 2 No |
what is the size of a class which contains no member variables but has two objects??? is it 1 or 2??
What are references in c++?
What is constructor in C++?
What are move semantics?
What is the Difference between "C structure" and "C++ structure"?
In c++, what is the difference between method overloading and method overriding?
Explain the advantages of using friend classes.
Why c++ is the best language?
How the virtual functions maintain the call up?
How the endl and setw manipulator works?
Are strings mutable in c++?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == 4 ) y-= 7; else y = 8; Enter a segment of code (without any IF statements) that does exectly the same thing using the switch structure.