Reverse an Array without changing position of zeroes
Given an array arr[] and N, which is the size of this array, the task is to reverse this array without changing the position of zeroes in this array. Examples: Input: arr[] = {0, 3, 0, 6, 0, 8}, N = 6Output: [0, 8, 0, 6, 0, 3]Explanation: The position of the zeroes is not disturbed. Input: arr[] = {