ReviewEssays.com - Term Papers, Book Reports, Research Papers and College Essays
Search

Fibonacci Series Using an Array

Essay by   •  December 17, 2010  •  Study Guide  •  251 Words (2 Pages)  •  963 Views

Essay Preview: Fibonacci Series Using an Array

Report this essay
Page 1 of 2

Fibonacci Series Using an Array

We have now used a variety the features of C. This final example will introduce the array. The program prints out a table of Fibonacci numbers. These are defined by a series in which any element is the sum of the previous two elements. This program stores the series in an array, and after calculating it, prints the numbers out as a table.

#include

main()

{ int fib[24];

int i;

fib[0] = 0;

fib[1] = 1;

for(i = 2; i < 24; i++)

fib[i] = fib[i-1] + fib[i-2];

for (i = 0; i < 24; i++)

printf("%3d %6dn", i, fib[i]);

}

One new construct has been introduced here.

int fib[24];

This defines an array called fib of 24 integers. In C, the array index is bounded by square brackets (this avoids confusion with a function call). Also, the first element of the array has index zero, and for this 24 element array, the last element is index 23.

Following this brief scan through the language, we shall introduce the components of C in rather more detail.

...

...

Download as:   txt (1.1 Kb)   pdf (43.1 Kb)   docx (9 Kb)  
Continue for 1 more page »
Only available on ReviewEssays.com
Citation Generator

(2010, 12). Fibonacci Series Using an Array. ReviewEssays.com. Retrieved 12, 2010, from https://www.reviewessays.com/essay/Fibonacci-Series-Using-an-Array/22822.html

"Fibonacci Series Using an Array" ReviewEssays.com. 12 2010. 2010. 12 2010 <https://www.reviewessays.com/essay/Fibonacci-Series-Using-an-Array/22822.html>.

"Fibonacci Series Using an Array." ReviewEssays.com. ReviewEssays.com, 12 2010. Web. 12 2010. <https://www.reviewessays.com/essay/Fibonacci-Series-Using-an-Array/22822.html>.

"Fibonacci Series Using an Array." ReviewEssays.com. 12, 2010. Accessed 12, 2010. https://www.reviewessays.com/essay/Fibonacci-Series-Using-an-Array/22822.html.