Zebra0.com

cpp arraysArrays

Arrays

Learn C++ in step-by-step lessons.

Arrays

If you declare 3 variables as num1, num2, and num3, 3 separate locations in memory are allocated. These are called scalar variables.

scalar

Instead you could declare num to be an array with a size of 3. The elements of an array are indexed, starting with 0. You would refer to these values as num[0], num[1], and num[3].
The index can be a variable.
For example if i=2, then num[i] would be the same as num[2]. This makes it easy to use loops to process the array.

array


Goals:

Objectives:

Please study the material at each of the links below.

  1. Input 3 numbers
  2. Input and Arrange
  3. Names of Months
  4. Find the day of the year
  5. Fast Food menu
  6. Read a file into an array
  7. Employee program project
  8. Project flow charts
  9. Project starting code
GlossaryGlossary for arrays lesson
Full Glossary