Q:

C Program to find the sum of Series: 1/1!+2/2!+3/3!+4/4!+….+N/N!

0

Write a C Program to find the sum of Series: 1/1!+2/2!+3/3!+4/4!+….+N/N!. Here’s simple C Program to find the sum of Series: 1/1!+2/2!+3/3!+4/4!+….+N/N!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 the sum of Series: 1/1!+2/2!+3/3!+4/4!+….+N/N!. 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 the sum of Series: 1/1!+2/2!+3/3!+4/4!+....+N/N!  */

#include<stdio.h>

/*function to find factorial of the number*/
unsigned long factorial(int num)
{
    int i;
    /*always assign 1, if variable multiplies with values*/
    unsigned long fact=1;

    /*multiply num*num-1*num-2*..1*/
    for(i=num; i>=1; i--)
        fact= fact*i;

    /*return factorial*/
    return fact;
}

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

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

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

    /*calculate sum of the series*/
    for(i=1;i<=N;i++)
        sum = sum + ( (float)(i) / (float)(factorial(i)) );

    /*print the sum*/

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

    return 0;
}

OUTPUT : :

 

Above is the source code for C Program to find the sum of Series: 1/1!+2/2!+3/3!+4/4!+….+N/N! 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: 1+1/2+1/3+1/4+1/5... >>
<< C program to find sum of Series : 1^2+2^2+3^2+4^2+...