InterviewSolution
Saved Bookmarks
| 1. |
What is meant by direct initialisation of an array in java |
|
Answer» tializer for an array is a comma-separated LIST of constant expressions enclosed in BRACES ( { } ). If an array is PARTIALLY initialized, elements that are not initialized receive the value 0 of the APPROPRIATE type. ... The same applies to elements of arrays with static storage duration |
|