Write a program to calculate the following series:
Write a program to calculate the following series: S=1!+2!+3!+4!+..............................+n.
- 5685 दृश्य
- 1 उत्तर
1 उत्तर
-
-
- 01 अप्रैल
- 0 टिप्पणी
-
- Психологическая помощь при похудении
- C programming Program to print the Fibonacci series up to n numbers.
- What is difference between C C++ and Java?
- Write a program to store 5 elements in the array P and 3 elements in the array Q.Produce a third array R after joining the array P and Q.Display the resultant array.
- Программы и игры для Андроид телефона
- How will you print “Hello World” without semicolon?
- The best CBD for Life
- What is the difference between C and C++?
- What are storage classes in C language?
- Write a program to read the marks of 50 students in a class and display the following:
मॉक परीक्षण अभ्यास के लिए
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 /}