Programming Shortcut

Write, Run and execute Your programs with simple and esay way by Programming Shortcut

Monday, February 4, 2019

fibonacci series programming c

Hello friends! Welcome to my website

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
#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();
}


Output: 
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!

Newer Post Older Post Home

About Programming Shortcut

This is a programming learning website that can help you learn and when your write your programming code. And all programming code is compiled run programming code in the following programming language C, c++, Java, php and Javascript Languages. find your programming read, understand the programming then copy and past and run your program and save your golden time to typing the program becuse you learn more in leas time. All Programming is codeing is ease to understand the programming