Here is the c source code/program for: Write a program to add first seven terms of the following series using loop 1/1!+2/2!+3/3!+… /* write a program to add first seven series using for loop programmed by: Name: Jitendra kumar Yadav Roll: 16 Date: 12 feb 2011 */ #include <stdio.h> #include <conio.h> void main() { […]