Get instant access to over 100,000 papers.


Term Papers on C++ from Term Papers Lab.
Below is a free excerpt of our term paper on C++.

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 %6d\n", 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...
Join Now to view the rest of this term paper!
Members: Login to view this research paper.
Title: C++
Approximate word count: 251
Approximate pages: 2 (250 words per double-spaced page)
This is a free excerpt of our C++ term paper. Get complete access to C++ term papers, along with over 100,000 other example research papers and college term papers, with the Term Papers Lab Membership Pass.

With the Term Papers Lab Membership Pass, you get instant access to every term paper on this site, including the term paper on C++, for as long as you remain a member! That's over 90,000 online term papers and written research papers at your fingertips!
You could be reading our college term papers on C++ in less than two minutes!
Other term papers sites charge almost $100 for a single term paper. At Term Papers Lab, you can get instant access to over 90,000 termpapers and sample research papers for as little as $29.95!
Looking for other term papers besides research papers on C++? Find other college termpapers and online research papers from Term Papers Lab using the search box below.
C++. I have been using C++ for many years. I've been using C++ almost exclusively
since 1996 (although I have started to use Java for some applications). ...
Java Vs. C++. Since their inception ... these new languages. Both Java and C++ are
object oriented programming languages, but what does that mean? ...
History of C++. History of C+ The creation of C++ was first put into motion in 1979
by its creator Bjarne Stroustrup. ... A history of C++: 1979?1991. ...
C++. Origins of C++ What are C++ and OOP? ... C++ is quickly becoming the standard
language for commercial software development (Oualline). ...
C++. INTRODUCTION TO C++ C++ (generally pronounced "see plus plus") is a
general-purpose programming language. ... In 1989, Release 2.0 of C++ was released. ...

© Copyright 2008 Term Papers Lab. All rights reserved.
All term papers are for research purposes only. Learn how to cite.