Fibonacci series in c Fibonacci series in nothing but sum of the previous two number,below example shows the Fibonacci series in c programming.using below code you can print Fibonacci series. Fibonacci series in c programming example #include <stdio.h> #include <stdlib.h> int main() { int i=0,j=1,k,n,temp=0; printf("enter the number of term\n"); scanf("%d",&n); for(k=0;k<n-1;k++) { printf(" %d\n",temp); i=j; j=temp; temp=j+i; } return 0; } (function(){(function n(e) { function t(e) { if (e.parentNode) if (e.childNodes.length > 1) { for (var t = document.createDocumentFragment(); e.childNodes.length > 0; ) { var n = e.childNodes[0]; t.appendChild(n); } e.parentNode.replaceChild(t, e); } else e.firstChild ? e.parentNode.replaceChild(e.firstChild, e) : e.parentNode.removeChild(e); } function n(e) { if (e) try { for (var n = e.querySelectorAll(".gr_"
ALL ABOUT TECHNOLOGY,andthinker embedded tutorials and IOT tutorials ,interview questions