previous | start | next

Syntax 13.2: Array Element Access

 
arrayReference[index]

Example:

  a[4] = 29.95;
double x = a[4];

Purpose:

To access an element in an array



previous | start | next