MCPcopy Create free account
hub / github.com/AdarshAddee/Hacktoberfest2022_for_Beginers / printArr

Method printArr

Java/InsertionSort.java:20–26  ·  view source on GitHub ↗
(int a[])

Source from the content-addressed store, hash-verified

18 }
19 }
20 void printArr(int a[])
21 {
22 int i;
23 int n = a.length;
24 for (i = 0; i < n; i++)
25 System.out.print(a[i] + " ");
26 }
27
28 public static void main(String[] args) {
29 int a[] = { 92, 50, 5, 20, 11, 22 };

Callers 1

mainMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected