I'm facing a peculiar question today..
What happens when I use the prefix increment on a variable inside a function parameter list, but then reuse that variable again in the parameter list? Will the prefix increment happen before the variable gets evaluated as part of the second parameter?
(And I suppose I might as well ask, what if one were to use a postfix increment instead?)
Example(++marker1, marker2 - marker1);