Hi > Do I have any guarantees that the parameters in a function call will > be evaluated in order from left to right? i.e. if I have: > > int i = 0; > myFunction(i++, i); > > will it always be called using myFunction(0, 1) ?
Nope. Regards Paul Paul Grenyer Email: [EMAIL PROTECTED] Web: http://www.paulgrenyer.co.uk Have you met Aeryn: http://www.paulgrenyer.co.uk/aeryn/? Version 0.3.0 beta now available for download.
