Find the nth Fibonacci c series in c



                                              To compile and execute the program, copy the code into a text file. Save the text file with the extinction .c (ex. program.c). Save your file in turboc2 or borland (it may your othe c-compiler). Now open you IDE (tc.exe) , goto file->pick file. Your source file will be loaded into IDE. Now you can compile and run the file easily.



Fibonacci series: Fibonacci series is  series obtained by adding a number with its previous number.


#include<conio.h>
#include<stdio.h>
void main()
{
int f1 = 0, f2 = 1, f3, n;
clrscr();
gotoxy(31,1);
printf("fibbonic series");
gotoxy(26,3);
printf("http:\\techaravind.blogsopt.com");
gotoxy(1,5);
printf("Program for Fibonacci Series\n");
printf("Enter the maximum number for Fibonacci Series: ");
scanf("%d", &n);
printf("\nPrinting Fibonacci Series from 0 - %d\n", n);
printf("%d\n%d\n", f1, f2);
while(1)
{
f3 = f1 + f2;
if(f3 > n)
break;
printf("%d\n", f3);
f1 = f2;
f2 = f3;

}
getch();
}



0 comments:

Post a Comment

 
Etutos © 2010-2011