Question: Complete the code given below to find out the maximum even number in the given array. [Marks 4] #include #define SIZE 5 void find_maxeven(int a[],int
Complete the code given below to find out the maximum even number in the given array. [Marks 4] #include #define SIZE 5 void find_maxeven(int a[],int s); int main() { int array[SIZE] = {9,2,3,4,1}; int choice; do{ printf(" Max Even value = %d", find_maxeven(array,SIZE)); printf("Enter 0 to exit:") scanf("%d",&choice); }while(); //Part 1 return 0; } float find_maxeven(int a[],int s); { int max; //Parrt 2 return max; }Immersive Reader
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
