Code for the series 1/1+1/2+1/3+1/4+1/5+1/6..........1/n
Answers
Answered by
1
Answer:
#include<stdio.h>
void main()
{
int i,n;
for(i=1,i<=n; i++)
{
printf("%f +", 1/i);
}
}
Similar questions
Business Studies,
5 months ago
Chemistry,
5 months ago
English,
5 months ago
English,
10 months ago
Social Sciences,
10 months ago
Science,
1 year ago
Biology,
1 year ago
Social Sciences,
1 year ago