Array Manipulation
Array Manipulation This was the given question my code is attached Write a function that for given two arrays (input arrays) returns a new array (output array) that contains elements of the input arrays that are divisible by 5. Hints: Remember to pass sizes of input arrays into this function. Also, recall how arrays are returned from the function. More specifically, what is default mechanism for passing arrays into a funtion. Example: Input array #1: 1 15 23 10 20 79 80 55 Input array #2: 31 5 38 190 21 95 83 85 22 Output array: 15 10 20 80 55 5 190 95 85 Note: You do not need to return the size of the output array. You may assume that the size of the output array is always valid. //i am not sure how to get the output array https://code.sololearn.com/cOj4G6s6mr3Y/?ref=app