1- write a function in C language with prototype
int max(int x [ ] , int size );
the function should return the largest integer in the array x.
2- write a function in C language with prototype
int isprime (int x );
the function should return 1 if x is a prime number and 0 if x is NOT a prime number.