MCPcopy Create free account
hub / github.com/Vishruth-S/CompetitiveCode / printArray

Method printArray

Misc/Heap_Sort/solution.java:94–100  ·  view source on GitHub ↗
(int arr[])

Source from the content-addressed store, hash-verified

92
93 /* A utility function to print array of size n */
94 static void printArray(int arr[])
95 {
96 int n = arr.length;
97 for (int i=0; i<n; ++i)
98 System.out.print(arr[i]+" ");
99 System.out.println();
100 }
101
102 // Driver program
103 public static void main(String args[])

Callers 1

mainMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected