/* * Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 12 Dec 2025 * Repo: https://github.com/notamitgamer/bsc * License: MIT */ /* WAP to print n terms of Fibbonacci Series (Starting from term 0) */ // This code has not been compiled. // If you find any issues, please create a new issue on GitHub regarding them. // Go to this link to create a new issue: https://github.com/notamitgamer/bsc/issues #include void printFibonacci(int); void printFibonacci(int n) { int val1 = 0, val2 = 1, val3, i; printf("\nFibonacci series upto %d terms :", n); if (n < 0) printf(" N/A"); if (n == 0) printf(" %d", val1); if (n > 0) printf(" %d %d", val1, val2); for (i = 2; i <= n; i++) { val3 = val1 + val2; printf(" %d", val3); val1 = val2; val2 = val3; } } int main() { int n; printf("Enter the n : "); scanf("%d", &n); printFibonacci(n); return 0; }