/*---------------------------------------------------*/ /* Program chapter4_2 */ /* */ /* This program prints 21 values of the sinc */ /* function in the interval [a,b] using a */ /* programmer-defined function. */ #include #include #define PI 3.141593 double sinc(double x); int main(void) { /* Declare variables and function prototypes. */ int k; double a, b, x_incr, new_x; /* Get interval endpoints from the user. */ printf("Enter endpoints a and b, (a