a random no. is just random!:]
randomly look...
Or you can do Rnd*232 Where 232 is a number of your choice higher or lower number. I have used this in a Timer and works well.Valtros------------------------------------------------------------------------------------------------------------------AnswerUse the random function. The example below will give a random number between 1-100r = Random(1, 100)
An irrational number cannot be rational, so choosing at random is an irrelevance.
RAND: Rand uses a multiplicative congruential random number generator with period232 to return successive pseudo-random numbers in the range 0 to RAND_MAX. Return Value: Rand returns the generated pseudo-random number. RANDOM(): Random returns a random number between 0 and (num-1).random(num) is a macro defined in STDLIB.H. RANDOMIZE(): Randomize initializes the random number generator with a random value. Because randomize is implemented as a macro that calls the time function prototyped in TIME.H, you should include TIME.H when you use this routine SRAND(): The random number generator is reinitialized by calling srand with an argument value of 1.The generator can be set to a new starting point by calling srand with a given seed number.
a random no. is just random!:]
what is the use of mbbs counselling random number, how to find the college related to random number
randomly look...
yes, because the number generated is from the computer's CPU database and is selected randomly therefore it must be a random number It depends on how the numbers are generated. If they are based on things in the environment, like noise levels, then yes. If they are solely generated by computer functions, then no, they are pseudo-random numbers, which will be random enough for most purposes.
Theoretically, zero. The finite probability can only exist between two points. However, if we are simulating a continuous distribution with a random number generator, all values are truncated to a finite number of digits depending on the register size. If we consider a uniform random number generator, with a 7 digit accuracy, then matching a single value is 1/10,000,000, pretty close to 0.
* A number generated for or part of a set exhibiting statistical randomness. * A random sequence obtained from a stochastic process. * An algorithmically random sequence in algorithmic information theory. * The output of a random number generator. * The least random number (17), according to the Hacker's Jargon File.
In computing, a hardware random number generator is an apparatus that generates random numbers from a physical process.
A pseudo-random number generator.
To the best of my knowledge, a random sequence limit imposes restrictions on random number generation. For example, one may want to generate random numbers such that any number does not occur consecutively three times. Another definition of a random sequence limit is the number that a sequence of random measurements of some property converge to as the number of measurements increase.
That is a number picked without any thought.
If you don't initialize it, you will find random garbage in it. (The same is true for auto class.)
Or you can do Rnd*232 Where 232 is a number of your choice higher or lower number. I have used this in a Timer and works well.Valtros------------------------------------------------------------------------------------------------------------------AnswerUse the random function. The example below will give a random number between 1-100r = Random(1, 100)