Question: The code must be written in C. Write a program that computes the following summation using a function. a + (a + 1) + ...

The code must be written in C.
Write a program that computes the following summation using a function. a + (a + 1) + ... + b = sigma^b_i = a i Write and implement the following function in your program: int computesum (int a, int b) The function computesum computes the sum of all the integers from a to b. You can compute the sum sigma^a - 1_i = 1 i and sigma^b_i = 1 i and use these to test your program. If your program is correct you should have sigma^a - 1_i = 1 i + sigma^b_i = a i = sigma^b_i = a i Sample execution of the program is given below Enter a and b 5 10 Sum from 5 to 10 is 45 Sum from 1 to 4 is 10 Sum from 1 to 10 is 55
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
