Question: Language: C programming please read carefully and make sure the code is running. thanks, Write a driver program and implement the functions specified below to
Language: "C programming"
please read carefully and make sure the code is running.
thanks,

Write a driver program and implement the functions specified below to determine several facts about a given number. We are going to determine the following: if a number is divisible by 7, 11, or 13 and is the number prime. Implement this function: void divisibility(int number, int *seven, int *eleven, int thirteen); int is_prime(int number); Sample Output: Enter a number: 7 Facts for your number: Divisibility by 7: YES Divisibility by 11: NO Divisibility by 13: NO Is Prime: YE Data Type Requirement: Input data is of type int and output is fixed string yes or no Input Validation: Input can be any positive integer plus 0. You should account for special nature of 0 and 1 when checking prime
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
