Write a program to print 1+1/2+1/3+1/4+... ... ...+1/N series.
_____________ PROGRAM : -------------------------------------------------- #include<stdio.h> #include<conio.h> void main() { int i,j,n; float k=0; \\K is Taken for ADDITION clrscr(); printf("Enter the Number of Terms : "); scanf("%d",&n); for(i=1;i<=n;i++) \\Take a loop Up to N number { j=1/i; printf("1/%d+",i); \\print the series k=k+j; \\For addition } printf("SUM IS = %f",k); \\Print the Addition getch(); ...