Hey Everyone,

Just began programming C and am working through the 'white bible'. Have programmed in LISP and Java prior to this. I have a question regarding the incrementer operator and its usage with arrays. Ex:

Code:
value = ++myarray[maxvalue - 1];
What exactly is being incremented here?

I haven't seen an increment operator used in this way before!

Cheers

BIOS