Compute series sum S=1+3/2+5/4+7/8
C Practice Exercise
Write a C program to calculate the value of S where S = 1 + 3/2 + 5/4 + 7/8.
Sample Solution:
C Code:
Sample Output:
Value of series: 4.62
Flowchart:

For more Practice: Solve these Related Problems:
- Write a C program to compute the series sum where the numerator increases by 2 and the denominator doubles with each term.
- Write a C program to calculate a series with alternating signs, such as S = 1 - 3/2 + 5/4 - 7/8 + ... for a given number of terms.
- Write a C program to compute the sum of a series where each term's numerator is an odd number and the denominator is the factorial of its term number.
- Write a C program to calculate the series sum where the numerator is an odd number and the denominator is an exponential function of the term index, for n terms.
C programming Code Editor:
Previous: Write a C program to calculate the value of S where S = 1 + 1/2 + 1/3 + … + 1/50.
Next: Write a C program that reads an integer and find all its divisor.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.