C Program to print Fibonacci series

#include "stdio.h"
void fibino (int);

void main()
{

    int limit;
    clrscr();

    printf ("Enter the no. of terms\n");
    scanf ("%d",&limit);

    fibino (limit);
    getch();

}

void fibino (int lim)
{
    int i, fi=0, a, b=1;
    printf ("Terms are :-\n");
    for (i=0; i < lim; i++)
    {
         printf("%d\n",fi);
         a = fi;
         fi+=b;
         b=a;
    }
}