I'm trying to generate a random number that's between 0 and 1. I keep reading about arc4random(), but there isn't any information about getting a float from it. How do I do this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||||
|
A bit more details here |
|||||||||
|
|
This function works for negative float ranges as well:
|
|||
|
The previous post above stating "rand()" alone was incorrect. This is the correct way to use rand(). This will create a number between 0 -> 1
|
|||
|
|
by default produces a random number(float) between 0 and 1. |
|||||||
|
That produces a random float bewteen 0 and 1. More info here |
|||||||||
|
|
To generate a random number between two numbers
happy Coding :) |
||||
|
|
