1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # include <stdio.h> # include <conio.h> int main() { int i, n; // initialize first and second terms int t1 = 0, t2 = 1; // initialize the next term (3rd term) int nextTerm = t1 + t2; clrscr(); // get no. of terms from user printf( "Enter the number of terms: " ); scanf( "%d" , &n); // print the first two terms t1 and t2 printf( "Fibonacci Series: %d, %d, " , t1, t2); // print 3rd to nth terms for (i = 3; i <= n; ++i) { printf( "%d " , nextTerm); t1 = t2; t2 = nextTerm; nextTerm = t1 + t2; } return 0; getch(); } |
Ajink Gupta Answered question April 13, 2024