Find the output
int n[ ] = new int [5]
for (int i=0; i < 5; i++)
System.out.print(n[i] + ",");
Answers
Answered by
1
Answer:
The output of the code fragment will be
0,1,2,3,4
Similar questions