...two numbers to get the next one, starting from 0 and 1: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987, ...
#include<stdio.h> /* C Standard Input and Output Library*/
/*Variable declarations*/
int
number_of_terms;
int
pre_term =
0
;
int
post_term =
1
...