Computer Science, asked by Graisonsajiy3070, 11 months ago

Which one of the following will declare an array and initialize it with five numbers? | Array a = new Array(5);

Answers

Answered by amannishad0512p5zxh6
2

Correct way is this :-

int a[ ]=new int [5];

Similar questions