#include #include void main(void) { clrscr(); int first=0,second=1,third,i; printf("Fibomachi: %d %d",first,second); for(i=0; i<8 ;i++) { third=first+second; printf(" %d",third); first=second; second=third; } getch(); }