Write a program to calculate the following series:
Write a program to calculate the following series: S=1!+2!+3!+4!+..............................+n.
- 5684 Views
- 1 Answers
1 Answers
-
-
- 01 Apr
- 0 Comment
-
- Ищу достойного мужчину!
- Программы и игры для Андроид телефона
- can u define type of pointer ??
- How to dynamically allocate a 2D array in C?
- Can someone explain the concept of pre and post increment in C?
- Trade crypto anytime
- How will you print numbers from 1 to 100 without using loop?
- What is structured programming?
- What is the eligibility criteria for cracking the C Progamming Exam 2018?
- C programming Program to print the Fibonacci series up to n numbers.
Practice Mock Test
c programming
#include<stdio.h>br /int add(int num)br /{br /int i,j,fact,sum=0;br /for(i=1;i<=num;i++)//loop for finding factorial and sumbr /{br /fact=1;br /if(i!=num)br /printf("%d!+ ",i);br /elsebr /printf("%d!= ",i);br /for(j=1;j<=i;j++)br /fact=fact*j;br /sum=sum+fact;br /}br /return sum;br /}br /int main()br /{br /int num;br /printf("Enter the last number of series:\n");br /scanf("%d",&num);//last number of seriesbr /printf("%d",add(num));br /return 0;br /}