Standard C++ Library Class Reference
The differences between adjacent elements are:
1 0 1 1 2 3 5 8 13 21
The products of adjacent elements are:
1 1 2 6 15 40 104 273 714 1870
Warning
If your compiler does not support default template parameters then you need to always supply the Allocator template
argument. For instance you'll have to write:
vector<int,allocator>
instead of:
vector<int>