How would i point to the second element w/o doing numbers[1] ?
int numbers[] = {10, 20, 30, 40, 50};
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.
|
What is wrong with that notation there isn't any advantage and it is much less concise. one way is to do this:
Or you can (preferably) use a managed array like a vector
|
|||||
|
|
There are any number of ways you could do this:
but here's the rub: they're all much worse than If you're curious about that bizarre-looking third one, look up |
||||
|
|
numbers[1]is the same as*(numbers + 1)– Blastfurnace Mar 30 '12 at 2:30numbers[1]. Why don't you spice it up and do1[numbers]? :P Other than that,*(numbers + 1)and*(1 + numbers)are all I can really think of without getting into obfuscated code. – chris Mar 30 '12 at 2:33