Content deleted Content added
Line 52:
<syntaxhighlight lang="c">
unsigned int fib(unsigned int n) {
if (!n)
return 0;
Line 58:
return 1;
else {
unsigned int a, c;
for (a = c = 1; ; --n) {
c += a;
|