GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Placement Papers  >  Aztec Systems  >  C

 Print  |  
Question:  Write a program to implement the Fibonacci series



May 05, 2009 03:05:41 #4
 trogen   Member Since: May 2009    Total Comments: 1 

RE: Write a program to implement the Fibonacci series
 
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c;
clrscr();
c=a+b;
a=b;
b=c;
printf("n %d",a);
getch();
}
     

 

Back To Question