C Language!! Write a function void modify_arr(int array[], int size) which takes these parameters: an array of integers, int array[] the size of the array, int size. The function should modify each element of the array as follows: divide the element by 2 if it is positive, replace it with 0 (zero) if it is negative. Note: you DON'T have to print or return anything. Just modify the array directly.