C Program to implement Integration.

C Program to Implement Numerical Integration (Trapezoidal / Rectangle Rule) Numerical integration approximates a definite integral by summing the areas of thin vertical slices under the curve. The rectangle rule divides the interval [a, b] into N equal strips and sums f(x) * width for each strip. Integration is used in engineering and science to …