- 1
What does this mean?đ int [ ] a = New int [5]
Its a c# question asking to explain what this means
4 Answers
+ 5
int[] a = new int[5]
this means defining array with size of 5 with no entry of values.
+ 5
AJ #Infinity Love ok sorry
+ 1
it creates an int array that can hold 5 elements.
+ 1
S Adil đŠđ« Size of Array 5 not 6.