Skip to content

Instantly share code, notes, and snippets.

#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
#define MAX_FIB 51
unsigned long int fib[MAX_FIB];
void genfib(int maxf){
int i;