(int arr[])
| 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[]) |