Lab Record Program No 6 Get link Facebook X Pinterest Email Other Apps December 02, 2022 6.Write a C Program to print the Fibonacci Series. #include<stdio.h> #include <conio.h>void main() { int a=0, b=1, c, i=1; printf("\n %d\t%d\t", a,b); do { c=a+b; printf("%d\t",c); a=b; b=c; i++; } while(i<=10); getch(); } Get link Facebook X Pinterest Email Other Apps Comments
PPS UNIT 2 Notes December 23, 2022 PPS Unit 2 Notes complete https://drive.google.com/file/d/1hM43NMdIz1sfFixcIlTzz0S1OXxL8CRm/view?usp=share_link Read more
Comments
Post a Comment