MCPcopy Index your code
hub / github.com/Tiwarishashwat/InterviewCodes / printArray

Method printArray

MergeSort.java:67–73  ·  view source on GitHub ↗
(int arr[])

Source from the content-addressed store, hash-verified

65
66 /* A utility function to print array of size n */
67 static void printArray(int arr[])
68 {
69 int n = arr.length;
70 for (int i = 0; i < n; ++i)
71 System.out.print(arr[i] + " ");
72 System.out.println();
73 }
74
75 // Driver code
76 public static void main(String args[])

Callers 1

mainMethod · 0.95

Calls 1

printMethod · 0.80

Tested by

no test coverage detected