Answer the 2 questions from the picture below about C programming Arrays:
Extracted text: Define function: int findMin(int num[], int size); The function finds and returns the smallest element in the array. For example: Test Result int num[10]={3,4,2,-5,6,7,8,1,2,-3); -5 printf("&d",findMin (num, 10));
Extracted text: Define the function: int findMax(int num], int size); The functions finds and returns the largest element in the array. For example: Test Result int num[10]={3,4,12,6,7,-9, 4,8,5,10); 12 printf ("&d", findMax (num, 10));