Sunday, May 26, 2013


Fibonacci series program in c using recursion






# include <stdio.h>
int fib(int);

main()
{
   int n, i = 0, c;
  printf("how many fibbonaci numbes to be printed");

   scanf("%d",&n);

   printf("Fibonacci series\n");

   for ( c = 1 ; c <= n ; c++ )
   {
      printf("%d\n", fib(i));
      i++;
   }

   return 0;
}

int fib(int n)
{
   if ( n == 0 )
      return 0;
   else if ( n == 1 )
      return 1;
   else
      return ( fib(n-1) + fib(n-2) );
}

Characters in SPA blue print


C -  Core Question
K- Knowledge based Question
A- Application based question

ECCF Question Describe the Block diagram of Operational Amplifier Draw the pin diagram of  µA 741 op-amp Draw the schematic diagram o...