> Og in what order is A + B + C + D evaluated?

A, B, C and D themselves are evaluated in arbitrary order. The whole
expression is than ((A + B) + C) + D.

> If it is from left to right...
> 
> const char* + char .... this is not a legal binding...

Of course this is legal. 'char' is silently promoted to an 'int', so this
is pointer arithmetic, too.

Andre'

-- 
André Pönitz ............................................. [EMAIL PROTECTED]

Reply via email to