Q:

C Program to find sum of series : 1 + 3^2/3^3 + 5^2/5^3 + 7^2/7^3 + … till N terms

0

Write a C Program to find sum of series : 1 + 3^2/3^3 + 5^2/5^3 + 7^2/7^3 + … till N terms. Here’s simple C Program to find sum of series : 1 + 3^2/3^3 + 5^2/5^3 + 7^2/7^3 + … till N terms in C Programming Language.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Numbers in C

Normally, when we work with Numbers, we use primitive data types such as int, short, long, float and double, etc. The number data types, their possible values and number ranges have been explained while discussing C Data Types.

Here is source code of the C Program to find sum of series : 1 + 3^2/3^3 + 5^2/5^3 + 7^2/7^3 + … till N terms. The C program is successfully compiled and run(on Codeblocks) on a Windows system. The program output is also shown in below.

SOURCE CODE : :

/*  C Program to find sum of series : 1 + 3^2/3^3 + 5^2/5^3 + 7^2/7^3 + ... till N terms  */

#include<stdio.h>
#include<math.h>

int main()
{
    int i,N;
    float sum;
    int count;


    /*read value of N*/
    printf("\nEnter total number of terms :: ");
    scanf("%d",&N);

    /*set sum by 0*/
    sum=0.0f;

    /*calculate sum of the series*/
    count=1;
    for(i=1;i<=N;i++)
    {
        sum = sum +  ( (float)(pow(count,2)) / (float)(pow(count,3)) );
        count+=2;
    }

    /*print the sum*/

    printf("\nSum of the series is :: %f\n",sum);

    return 0;
}

Output : :

/*  C Program to find sum of series : 1 + 3^2/3^3 + 5^2/5^3 + 7^2/7^3 + ... till N terms  */

Enter total number of terms :: 10

Sum of the series is :: 2.133256

Process returned 0

Above is the source code for C Program to find sum of series : 1 + 3^2/3^3 + 5^2/5^3 + 7^2/7^3 + … till N terms which is successfully compiled and run on Windows System.The Output of the program is shown above .

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C Number Solved Programs – C Programming

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C program to find Sum of series S=1+(1+2)+(1+2+3)+... >>
<< C program to find sum of series: 1+1/2+1/3+1/4+1/5...