Does a && (b = 5/a) assign 5/a to b (for nonzero a)?
My friend says it doesn't, but I'm confused why it wouldn't.
|
Does My friend says it doesn't, but I'm confused why it wouldn't. |
||||
|
|
|
Your friend is wrong. For nonzero If |
|||||||||
|
|
Your friend is wrong. Both sides must be evaluated if |
|||||||||
|
|
In C, the evaluation will break away early if it makes sense from a logic reduction standpoint. ie:
If a is zero, then logically, the whole statement is zero/false, if you ignore system errors (ie: divide by zero), so the rest of the statement won't be evaluated (eg: "zero and anything equals zero", so why bother calculating the "and anything" portion when we already know the final answer will always be zero). A better solution would be:
Good luck! |
||||
|
|
|
Your friend is incorrect. Given that a and b are ints then when a is zero b is left untouched but when a is zero then 5 is divided by a(int division!) ... The '&&' operator is a short circuit evaluation... Checked this out using gcc... |
|||
|
|