Suppose a and b are both of type int, and b is nonzero. Consider the result of performing a/b in the following cases:
aandbare both nonnegative.aandbare both negative.- Exactly one of them is negative.
In Case 1 the result is rounded down to the nearest integer. But what does the standard say about Cases 2 and 3? An old draft I found floating on the Internet indicates that it is implementation dependent (yes, even case 2) but the committee is leaning toward making it always ’round toward zero.’ Does anyone know what the (latest) standard says? Please answer only based on the standard, not what makes sense, or what particular compilers do.
According to the May 2008 revision,
You’re right:
Note 75 says:
Chances are that C++ will lag C in this respect. As it stands, it’s undefined but they have an eye towards changing it.
I work in the same department as Stroustrup and with a member of the committee. Things take AGES to get accomplished, and its endlessly political. If it seems silly, it probably is.