Skip to content

Instantly share code, notes, and snippets.

View vilash99's full-sized avatar

Vilashkumar Daate vilash99

View GitHub Profile
@vilash99
vilash99 / Fibonacii_Series.c
Last active August 23, 2023 11:04
Write a program to print the Fibonacci series for given N terms.
/*Write a program to compute Fibonacci series.*/
#include<stdio.h>
int main()
{
int i, n, f, f1 = 0, f2 = 1;
printf("Enter number of terms you want to print: ");
scanf("%d", &n);