Answer:
void showValues(int * array, int array_size){
int i;
for(i = 0; i < array_size; i++){
printf("%d\\", array[i]);
}
}
Step-by-step explanation:
I am going to write the prototype of a function as a c code.
array is the array as an argument, and array_size is the argument for the size of the array.
void showValues(int * array, int array_size){
int i;
for(i = 0; i < array_size; i++){
printf("%d\\", array[i]);
}
}