Computer Science, asked by aryanroy853476, 10 months ago

Find the output
int n[ ] = new int [5]
for (int i=0; i < 5; i++)
System.out.print(n[i] + ",");

Answers

Answered by varadhabala29
1

Answer:

The output of the code fragment will be

0,1,2,3,4

Similar questions