Declaring an Array
Declaring an Array
Declaring array does not actually creates an array , it simply tells the compiler that this variable is holding a specified type of array.
Like declaration of variables of other types , an array declaration has two components : the array’s type and the arrays’ name.
The array’s type is written as type[] , where typeis the data type of the contained elements. The square…
View On WordPress













