* Printing the array * Input: array to be printed, size of the array */
| 53 | * Input: array to be printed, size of the array |
| 54 | */ |
| 55 | void printArray(int arr[], int arraySize) { |
| 56 | for (int i = 0; i < arraySize; i++) |
| 57 | cout << arr[i] << " "; |
| 58 | cout << endl; |
| 59 | } |
| 60 | |
| 61 | int main() |
| 62 | { |