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
Math,
4 months ago
Physics,
4 months ago
English,
4 months ago
English,
9 months ago
Social Sciences,
9 months ago
Science,
1 year ago
Biology,
1 year ago
Social Sciences,
1 year ago