What is the Maximum Size that an Array can hold?
Answer Posted / reejusri
Maximum size has nothing to do with only the stack area,
but the area where the array is allocated from. The OP did
not say whether the array was created from dynamic memory
(a.k.a the heap), block or local memory (a.k.a. the stack),
or where automatic variables are declared.
The amount of memory available depends on:
1. The total memory on the platform.
2. The amount of memory allocated to the program.
3. The compiler's settings.
| Is This Answer Correct ? | 17 Yes | 9 No |
Post New Answer View All Answers
give me an example for testing a program showing the test path .show how the test is important and complex.
How does work in c++?
Name the operators that cannot be overloaded in C++?
Keyword mean in declaration?
Describe linked list using C++ with an example.
What is the first name of c++?
How do you remove an element from a set in c++?
What are c++ templates used for?
What is the iunknown interface?
how to connect with oracle 9i with server in socket program in c/c++
What is the difference between #define debug 0 and #undef debug?
Can you please explain the difference between overloading and overriding?
What is the use of namespace std in C++?
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
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create