Skip to content

Instantly share code, notes, and snippets.

View adamlukes's full-sized avatar

Adam Lukes adamlukes

  • codinggurus
  • new york
View GitHub Profile
@adamlukes
adamlukes / Fibonacci.C
Created September 19, 2017 09:11
C Program to Display Fibonacci Sequence
#include <stdio.h>
int main()
{
int i, n, t1 = 0, t2 = 1, nextTerm;
printf("Enter the number of terms: ");
scanf("%d", &n);
printf("Fibonacci Series: ");