fork(5) download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <time.h>
  4.  
  5. int main ()
  6. {
  7. float min = -270.33;
  8. float max = -47.50;
  9. float res;
  10.  
  11. srand(time(NULL)); /* inicializando a semente do gerador aleatorio*/
  12.  
  13. res = min + rand() * (max - min) / RAND_MAX;
  14.  
  15. printf("Resultado: %f\n", res );
  16.  
  17. return 0;
  18. }
Success #stdin #stdout 0s 3460KB
stdin
Standard input is empty
stdout
Resultado: -55.440769