Quote Originally Posted by CornedBee View Post
Of course, if you have a loop header, this might not work. You could use the comma operator instead.
Code:
while(a_status = a(), b_status = b(), a_status && b_status)
But couldn't those be evaluated in any order, or is that only for function parameters?