Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i'm looking at a c source file and i found this macro:

#define random ( (float) rand() / (float) ((1 << 31) -1) )

while in standard ANSI C rand() returns an integer in [0,32767], i really appreciate an help to understand what kind of normalization factor is the denominator, because signed integer are 16 bit and the expression does a 31-bit shift.

Thank you very much for your attention Best regards

share|improve this question
why do you say signed integer is 16 bits? – TJD Feb 2 '12 at 19:45
1  
For one, signed integers aren't always 16 bits. It's probably 32 bits in this case. – Mysticial Feb 2 '12 at 19:45
The C standard only guarantees that ints are AT LEAST 16 bits (they are quite often 32 bits, but they could also be 64 or 48 bits or many other sizes). – Adam Rosenfield Feb 2 '12 at 19:49
Actually, rand() returns an integer in the range [0, RAND_MAX]. On my platform RAND_MAX is 2147483647. – FatalError Feb 2 '12 at 19:49

3 Answers

rand does not return an integer in [0,32767] in "ANSI C". ยง7.20.2:

The rand function computes a sequence of pseudo-random integers in the range 0 to RAND_MAX.

It seems likely that whoever wrote that macro was working on a platform on which RAND_MAX was 2147483647.


You also seem to be confused about signed integers. int must be at least 16 bits wide, but it is often wider.

share|improve this answer
In C, RAND_MAX is at least 32767. RAND_MAX is usually equal to 32767 on systems with 16-bit int. – ouah Feb 2 '12 at 19:54

signed integer are 16 bit

They are at least 16 bits wide, but on desktop, server or even mobile phone hardware, they're usually 32 bits. So, the denominator is just 2**31-1 represented as a float.

share|improve this answer
1  
I'm pretty sure that 2**31-1 as a float would actually be 2**31 because there aren't enough bits in the float, assuming IEEE754 32-bit. – Mark B Feb 2 '12 at 20:11
@MarkB: yes, that's correct (assuming correct rounding). – Stephen Canon Feb 2 '12 at 20:54
someone says i'm confused about signed integers. I don't think to be confused: if 16-bit unsigned int -> [0,2**16-1], if 16-bit signed int -> [-2**15+1,2**15-1]. If we are talking about signed int32, then respectively [0,2**32-1] and [-2*31+1,2**31-1]. However, that source code on my VS2008 platform doesn't compile with error exactly in that bitwise expression, so i assumed it was standard ANSI C. If integers are at least 16 bits wide, no one ensures me the value of that macro is defined. Am I wrong? – Alessandro Feb 2 '12 at 23:45
#define random ( (float) rand() / (float) ((1 << 31) -1) )

in a system with 16-bit int, this macro is undefined behavior because of 1 << 31 expression (1 is of int type).

(C99, 6.5.7p3) "If the value of the right operand is negative or is greater than or equal to the width of the promoted left operand, the behavior is undefined."

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.