exponential series
#include<stdio.h>
#include<conio.h>
#include<math.h>
void main()
{
int i,x,n;
float e=1,denominator=1;
clrscr();
printf("Enter the value of x,n\n");
scanf("%d,%d",&x,&n);
while(i<=n)
{
e+=(float)(pow(x,i)/denominator);
denominator*=i;
++i;
}
printf("answer is %f",e);
}
write a program to print the series 1/12+1/22+.........+1/n2 ?
You mean you have written a program, but you don't understand it? Well, how could I explain it without seeing it?
#include<stdio.h> #include<conio.h> void main() { }
c program was introduced in the year 1972 by Dennis RitchieNo, it was the C language, not the C program.
how to create a c program for left factoring.
write a c program to accept a number and generate a square root cube and exponential values
find the program in c-pgms.blogspot.com
Exactly what do you mean by 'C program in Java'
1) forecasting for stationary series A- Moving average B- Exponential Smoothing 2) For Trends A- Regression B- Double Exponential Smoothing 3) for Seasonal Series A- Seasonal factor B- Seasonal Decomposition C- Winters's methode
Please do.
write a program to print the series 1/12+1/22+.........+1/n2 ?
chicken
You mean you have written a program, but you don't understand it? Well, how could I explain it without seeing it?
#include<stdio.h> #include<conio.h> void main() { }
Reference:cprogramming-bd.com/c_page2.aspx# sum the series
i dn't know. haha
Yes, this can be done. For example for Fibonacci series. You will find plenty of examples if you google for the types of series you need to be generated.