Program to print Fibonacci Series
Fibonacci Series: It is a special series, where first term is 0 and second term is 1 and from third term onwards, every term is the sum of previous two terms.0 1 1 2 3 5 8 13 and so on….. Program (Without Function)Time Complexity: O(n)Space Compexity: O(1) #include <stdio.h> int main() { printf(“****************************************************************”); printf(“\n****************************************************************”); …