Write the definition of a function that returns an int and t
Write the definition of a function that returns an int and takes as arguments an array of int and an int equal to the size of the array. The function will replace any negative values in the array with 0 and it will return the number of negative values that were encountered.
Solution
Ans)
Function definition here
---------------------------------
int functionName(int arrayName[ ],int size)
{
}
