Create a function that takes an integer array as input and a value and returns a POINTER to the number of times the value appears in the integer array, zero if it does not appear in the array. Use pointer arithmetic to work through the array (don't use the [ ] operator)

Solved
Show answers

Ask an AI advisor a question