/* File: findprime.c Implement and test the findPrime() function */ #include #include /* Function prototype */ /* Do not change the function prototypes */ int isPrime(int n) ; int findPrime(int n) ; /* Do not change the main program!! */ int main() { int n ; printf("Enter a number: ") ; scanf("%d", &n) ; printf("%d is the first prime number greater than n.\n", findPrime(n) ) ; return 0 ; } /* End of main() */ /* Copy your isPrime() function here. */ /* Implement your findPrime function here. */ /* Add function header comment for findPrime() */