I have the following simple program to generate floating point random numbers between 1 and 4:
#include<stdio.h>
#include <stdlib.h>
#include <time.h>
main()
{
int i = 0;
float u;
srand((unsigned)time(NULL));
for(i = 0;i< 10000 ; i++)
{
u = ((4-1)*((float)rand()/RAND_MAX))+1;
printf("The random value for iteration = %d is %2.4f \n", i, u);
}
}
It successfully generates floating point random numbers between 1 and 4 on an x86 Red Hat Linux machine. But the same program produces 0.0000 as random number on a PPC running Montavista Linux.
Could someone explain why and how to make this work on the PPC Montavista ?
0.0000the value of the expression((float)rand()/RAND_MAX)must be-0.3333333333. I doubt that very much even though I have no experience with Montavista on PPC – pmg Apr 17 '11 at 12:08rand()/RAND_MAXdivision before thefloatcast (mind you, I can't imagine it's actually doing that!), but then that would always give you1.0000, not0.0000. – QuantumMechanic Apr 17 '11 at 16:16