Write a program that print all Fibonacci numbers from 1 to n.

#include<stdio.h>
#include<conio.h>
#include<math.h>
#include<iostream.h>

void main()
{
    int n,i;
    clrscr();
    cout<<"Enter how many numbers, n = ";
    cin>>n;

    long a=0;
    long b=1;
    long c;
    for(i=1;i<=n;i++)
    {
       cout<<"\t"<<a;
       c=a+b;
       a=b;
       b=c;
    }
    getch();

}

///////////////////////////////////////////////////////////////////////////
Copy & paste this code in your TC & run, then you will get output.......
If you have any problem please comment below.........