Respuesta :
Answer:
void showValues(int * array, int array_size){
int i;
for(i = 0; i < array_size; i++){
printf("%d\n", array[i]);
}
}
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\n", array[i]);
}
}