Which one of the following will declare an array and initialize it with five numbers? | Array a = new Array(5);
Answers
Answered by
2
Correct way is this :-
int a[ ]=new int [5];
Similar questions