What is the Maximum Size that an Array can hold?
Answer Posted / sivasankar
infinity
| Is This Answer Correct ? | 6 Yes | 24 No |
Post New Answer View All Answers
What are associate containers?
How much maximum can you allocate in a single call to malloc()?
What is the difference between function overloading and operator overloading?
Is it legal in c++ to overload operator++ so that it decrements a value in your class?
Please explain the reference variable in c++?
Assume an array of structure is in order by studentID field of the record, where student IDs go from 101 to 500. Write the most efficient pseudocode algorithm you can to find the record with a specific studentID if every single student ID from 101 to 500 is used and the array has 400 elements. Write the most efficient pseudocode algorithm you can to find a record with a studentID near the end of the IDs, say in the range from 450 to 500, if not every single student ID in the range of 101 to 500 is used and the array size is only 300
Is c++ vector a linked list?
how to access grid view row?
Is c++ a dying language?
When there is a global variable and local variable with the same name, how will you access the global variable?
Who calls main function?
Would you rather wait for quicksort, linear search, or bubble sort on a 200000 element array? (Or go to lunch...) a) Quicksort b) Linear Search c) Bubble Sort
Should a constructor be public or private?
What are multiple inheritances (virtual inheritance)? What are its advantages and disadvantages?
What is an orthogonal base class in c++?