#include main() { int f,s,n,t; f=0,s=1; clrscr(); printf("Enter the number for the Fabonacii series\n: "); scanf("%d",&n); printf("\n%d\n%d",f,s); while (n>2) { t=f+s; printf("\n%d",t); f=s,s=t,n--; } getch(); }