for loop format
Ok so everybody knows the standard for loop format of:
for (initialization; termination; increment)
but what does it mean when you add a 4th expression to the mix?
this is from the Java Tutorial 4th Edition pg. 250
for (int i = 0; n = elements.length; i < n; i++)
Can somebody explain this please?

