What would happen if you try to put so many values into an array when you initialize it that the size of the array is exceeded?
Answers
Answered by
0
Answer:
The program would throw an error, if it was Java it would probably be a null pointer exception. If you were looping through the array it might overwrite values in the array.
Explanation:
Similar questions