Write C-function that will return the index (position in array) to the biggest number in array a, size of array given as parameter c
int find_big(int *a, int c);
Use pointer arithmetic like
*(a+4) = 3;
Answers
Answered by
0
Answer:
333cm
because it's going back
Similar questions