C Exercises: Calculate the value of a series of 4 numbers
C Basic Declarations and Expressions: Exercise-46 with Solution
Write a C program to calculate the value of S where S = 1 + 3/2 + 5/4 + 7/8.
Sample Solution:
C Code:
#include <stdio.h>
int main() {
double s=0, j=1, d, i;
// Loop to calculate the series
for(i=1; i<=7; i+=2){
d = (i/j);
s += d;
j = j*2;
}
// Print the result
printf("Value of series: %.2lf\n", s);
return 0;
}
Sample Output:
Value of series: 4.62
Flowchart:

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.
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join