Jeff Key has a nice for-loop example.
I occasionally use something like this:
for( int i = 0, j = 10; i < 10 && j > 0; i++, j-- ){//.. }