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
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:49rand()returns an integer in the range[0, RAND_MAX]. On my platformRAND_MAXis2147483647. – FatalError Feb 2 '12 at 19:49