Sunday, 2 September 2012

WAP to print fibonacci series till n terms(Using Goto)

  •  WAP to print fibonacci series till n terms(Using Goto)

#include <stdio.h>
#include <conio.h>
void main()
{
    int a=0,b=1,c,n=0;
    printf("\n%d",a);
    printf("\n%d",b);

    fib:
    c=a+b;
    n++;
    printf("\n%d",c);
    a=b;
    b=c;

    if(n<=10)
    goto fib;

    }

No comments:

Post a Comment