Indexed names
Definition
indexed_name
prefix ( expression { , expression } )
Examples
The 5th element of the array register_array is addressed.
register_array(5)
The elements with the indices (1024,7) of the two-dimensional array memory_cell are addressed.
memory_cell( 1024, 7 )