Apr 18, 2013 at 6:58am
When you declare an array for example:
const int size=4;
int array[size];
what is the correct word to use to describe the [] in the array??
Thanks
Apr 18, 2013 at 7:33am
well in the line:
int array[size];
the [] just indicates it is an array and the value inside the square brackets is the size of the array.
When used like this:
array[i]
the [] represents the index into the array.
Apr 18, 2013 at 3:24pm
Indices (plural of index).
Apr 18, 2013 at 3:26pm
Or if you mean the symbols themselves
(parentheses)
{braces}
[brackets]
So in array[5]
5 is the number of indices, array[4] is a reference to it's fourth index, and the numbers are surrounded by brackets.