I'm trying to initialize the last element in the array
int grades[10];
to grade 7 but it doesn't seem to work
I'm using C++ btw
|
|
|||||
|
|
|
If you want to initialize them all at definition:
If you want to initialize after:
But, be aware that grades 0..8 will still be uninitialized, and will likely be junk values. |
||||||||||||||
|
|
|
One more thing, if you initialize only the first element (if explicit array size is specified) or a shorter initiliazation list, the unspecified elements are fill with 0. E.g.
is the same as:
or
is the same as:
I find it handy for initializing an array with 0 values.
|
||||
|
|
|
Remember that an array with ten elements will have grades[0] through grades[9], and that grades[10] is an error. |
||
|
|
|
|
The last element is You might need to subtract one from the grade to use as your subscript value, or set the extent to one more. |
||
|
|