This is a follow-on from a discussion, which I think deserves a question of its own.
Basically, is the result of this undefined?
int x;
int y = 1 || x;
There are two "common-sense" arguments here:
- Mathematically speaking, no matter what the value of
x, the value ofyshould be1. - Because of short-circuiting,
xis never evaluated anyway.
But the counterargument is that we have an expression that involves an uninitialized variable, so all bets are off (in theory).
More generally, if the value of an uninitialized variable can't possibly affect the result of an expression, is it "safe"? e.g.:
int x;
int y = x - x;
Usual disclaimer: Of course, I'm not advocating ever writing code like this.
x = 1is "an expression that involves an uninitialized variable". So whoever offers that counter-argument is going to have to be a bit more precise what they think is disallowed, unless they're saying thatint x; x = 1;is UB becausexis uninitialized! – Steve Jessop Sep 1 '11 at 11:57