How to print the over flow of fibonacci series

How to print the over flow of fibonacci series using unsined int upto 100 numbers

Showing Answers 1 - 3 of 3 Answers

nishu

  • Jul 21st, 2017
 

int a,b;
int c;
a=0;
b=1;
Printf ("%d%d",a & b);
C=a+b;
While (c=100)
{
a=b;
b=c;
C=a+b;
Printf ("%d", c);
}

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions