Program to generate fibonacci series programming in c. How to use for loop in c language with example
In this fibonacci series each number is a sum of the previous two numbers. fibonacci series programming c, fibonacci series c programming, fibonacci series c code in c session
How to print fibonacci series programming in c
#include
void main()
{
long x,y,z;
int i,n;
x=0;
y=1;
printf(“Enter the number of terms : “);
scanf(“%d”,&n);
printf(“%ld “,y);
for(i=1; i
z=x+y;
printf(“%ld, “,z);
x=y;
y=z;
}
printf(“n”);
getch();
}
1, 1, 2, 3, 5, 8, 13, 34, 55, 89……………….
I make this programming and hope you are like the post if are you like the post you can please comment and Share the post to reach more people.
If any doubt about this c programming code or input & output please comment below
If you have another question about c programming send an email by contacting us form are given on the page right side.
I am Try to Help in your Programming Language by Programming Shortcut
Please any query email programmingshortcut@gmail.com
Please comment your experience on this post,
Thank You!