/*DEVELOP A PROGRAM USING do...while LOOP TO PRINT THE FIRST m FIBONACCI NUMBERS*/
#include<stdio.h>
main()
{
    int a=1,b=1,c=0,m,i=0;
    printf("Enter limit\n");
  
The content has been moved to our permanent website: www.programminghelp.in.
You will be redirected shortly.

Saturday, May 14, 2011

fibonacci,series,c,programm,lab,record,first semester

/*DEVELOP A PROGRAM USING do...while LOOP TO PRINT THE FIRST m FIBONACCI NUMBERS*/
#include<stdio.h>
main()
{
    int a=1,b=1,c=0,m,i=0;
    printf("Enter limit\n");
  
The content has been moved to our permanent website: www.programminghelp.in.
You will be redirected shortly.