InterviewSolution
Saved Bookmarks
| 1. |
If an array is initialized at the time of declaration, what thing one must bear in mind? |
|
Answer» The general form of array initialization is as shown below: type array-name[size N] = {value-list}; If an array is initialized at the time of declaration, following thing one must bear in mind:
|
|