What is the Maximum Size that an Array can hold?
Answer Posted / 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 |
Post New Answer View All Answers
Write about the stack unwinding?
What are keywords in c++?
what are Operators and explain with an example?
When do you call copy constructors?
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 is purpose of abstract class?
What is the difference between C and CPP?
What is a storage class used in c++?
How does the copy constructor differ from the assignment operator (=)?
What are structs in c++?
Name the operators that cannot be overloaded in C++?
How would you differentiate between a pre and post increment operators while overloading?
What are arrays c++?
Is multimap sorted c++?
What is namespace std; and what is consists of?