THIS IS C++
Write a function replaceNums that replaces each element exceptthe first and last by the larger of its two neighbors. Yourfunction should take two parameters, an integer array and the arraylength (in this order). Your function should not return or printanything.
Examples
int myArray[2] = {1, 5}; → {1, 5}
int myArray[1] = {1}; → {1}
int myArray[3] = {1, 3, 5}; → {1, 5, 5}
int myArray[3] = {5, 3, 1}; → {5, 5, 1}
int myArray[5] = {1, 2, 3, 4, 5}; → {1, 3, 4, 5, 5}
int myArray[5] = {5, 4, 3, 2, 1}; → {5, 5, 4, 3, 1}
Expert
OR
PayPal Gateway not configured
OR
PayPal Gateway not configured
PayPal Gateway not configured
PayPal Gateway not configured