Total members 10249 | Gratitudes |It is currently Thu May 17, 2012 8:09 am Login / Join Codemiles


All times are UTC [ DST ]




Post new topic Reply to topic  Quick reply  [ 3 posts ] 
Author Question
 Question subject: how to write a "c' program on fibannoic series
PostPosted: Sun Jan 08, 2012 9:09 am 

hai.


how to write a "c" program based on fibannoic series


TOP
  
Reply with quote  
 Question subject: Re: how to write a "c' program on fibannoic series
PostPosted: Thu Jan 12, 2012 8:13 pm 
/*fibannoic seriesi*/
main()
{
int f1=1,f2=1,terms,f3,i;
clrscr();
printf("enter the number of terms u want in series \n");
scanf("%d",&terms);

printf("%d %d ",f1,f2);

for(i=0; i<terms-2 ;i++)
{
f3=f1+f2;
printf(" %d ",f3);
f1=f2;
f2=f3;
}
getch();
}


TOP
  
Reply with quote  
 Question subject: Re: how to write a "c' program on fibannoic series
PostPosted: Sat Jan 14, 2012 6:49 pm 
Offline
Newbie
User avatar

Joined: Sat Jan 14, 2012 6:31 pm
Posts: 1
Has thanked: 0 time
Have thanks: 0 time
#include<stdio.h>
#include<conio.h>
void main()
{
int a=0,b=1,c,i;
clrscr();
printf("%d\t%d",a,b);
for(i=1;i<=8;i++)
{
c=a+b;
printf("%d\t",c);
a=b;
b=c;
}
getch();
}


TOP
 Profile Send private message  
Reply with quote  
Post new topic Reply to topic Quick reply  [ 3 posts ] 
Quick reply


  

 Similar topics
 I need you to help me to solve this program by c++ language
 How to write a JSP Program to manipulate Last Date visited
 C C++ program help using class
 Java Program for communicate PC and Mobile
 java chat program written by Mr.muhammed.
 HOW TO DO C++ PROGRAM?
 c++ program
 run .exe program in matlab
 Develop Series 40 web apps and win
 help for "Note pad code in java"

All times are UTC [ DST ]


Users browsing similar posts

Users browsing this forum: No registered users and 1 guest



Jump to:  
Previous Question | Next Question 




Home
General Talks
Finished Projects
Code Library
Games
Tutorials

Java
C/C++
C-sharp
php
Script
JSP/Servlets
Ajax
ASP/ASP.net
Google SEO
Database
Communications
Phpbb3 styles
Photoshop tutorials
Flash tutorials
Find a job






Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team