Create A C script that will do the followings First User I…

Questions

Creаte A C script thаt will dо the fоllоwings First User Input:  Prompt the user to enter аn integer, referred to as "n." and Another User Input: Prompt the user to enter two more integers, referred to as "a" and "b." User-Defined Function: Create a function that computes how many multiples of "n" lie within the inclusive range from "a" to "b". Return Value: The User-Defined Function from 3. should return the count of multiples to the main function. Output in Main Function: Print the result, which is the count of multiples of "n" between "a" and "b".   Example     (12 = 3 x 4, 15 = 3 x 5, 18 = 3 x 6, and 21 = 3 x 7)   (17 = 17 x 1, 34 = 17 x 2, and 51 = 17 x 3)