Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a function or will I have to use a third party library?

share|improve this question
16  
asking on stack overflow is the google for programming questions – 1800 INFORMATION May 4 '09 at 22:17

9 Answers

up vote 57 down vote accepted
#include <time.h>
#include <stdlib.h>

srand(time(NULL));
int r = rand();
share|improve this answer
31  
+1 for simplicity, but it is probably a good idea to emphasize that srand() should only be called once. Also, in a threaded application, you might want to make sure that the generator's state is stored per thread, and seed the generator once for each thread. – RBerteig May 5 '09 at 0:37
@RBerteig Why should it be called only once? – trusktr Oct 1 '12 at 5:43
7  
@trusktr, its complicated. Here's a reason: time() only changes once per second. If you seed from time(), for each call to rand(), then you will get the same value for every call during a single second. But the bigger reason is that the properties of rand() and functions like it are known best for the use case where they are seeded exactly once per run, and not on every single call. Depending on "randomness" with untested or unproven properties leads to trouble. – RBerteig Oct 1 '12 at 18:05
@RBerteig How about seeding with rand() instead of time()? – trusktr Oct 3 '12 at 0:19
3  
@trusktr for a simple linear congruential generator (which is what rand() usually is) seeding with rand() would at best have no effect at all, and at worst would break the generator's known qualities. This is a deep subject. Start with reading Knuth Vol 2 Chapter 3 on random numbers as the best introduction to the mathematics and pitfalls. – RBerteig Oct 3 '12 at 21:15

The rand() function in <stdlib.h> returns a pseudo-random integer between 0 and RAND_MAX. You can use srand(unsigned int seed) to set a seed. It's common practice to use the % in conjunction with rand() to get a different range (though bear in mind that this throws off the uniformity somewhat). eg:

/* random int between 0 and 19 */
int r = rand() % 20;
share|improve this answer
3  
It is a common practice alright, but not the correct one. See this and this. – Lazer Aug 1 '10 at 7:33
8  
@Lazer: That's why I said "though bear in mind that this throws off the uniformity somewhat". – Laurence Gonsalves Aug 2 '10 at 7:00

If you need better quality pseudo random numbers than what stdlib provides, check out Mersenne Twister. It's faster, too. Sample implementations are plentiful, for example here.

share|improve this answer
+1: Looks cool but I was just making a guessing game. If I were going to use a random number generator in a business application then I would definitely use this. – Lucas Jun 1 '09 at 2:31

Is there a FAQ entry for this question? It seems to be a Question that gets Asked very Frequently. I see a couple just from the past few hours.

FWIW, the answer is that yes, there is a stdlib call "rand"; this function is tuned primarily for speed and distribution, not for unpredictability. Almost all built-in random functions for various languages and frameworks use this function by default. There are also "cryptographic" random number generators that are much less predictable, but run much slower. These should be used in any sort of security-related application.

share|improve this answer

Well, STL is C++, not C, so I don't know what you want. If you want C, however, there is the rand() and srand() functions:

int rand(void);

void srand(unsigned seed);

These are both part of ANSI C. There is also the random() function:

long random(void);

But as far as I can tell, random() is not standard ANSI C. A third-party library may not be a bad idea, but it all depends on how random of a number you really need to generate.

share|improve this answer
You are right - random() is not standard. – anon May 4 '09 at 22:20

STL doesn't exist for C. You have to call rand, or better yet, random. These are declared in the standard library header stdlib.h. rand is POSIX, random is a BSD spec function.

The difference is that random returns a much more usable 32-bit random number, and rand typically returns a 16-bit number. The BSD manpages show that the lower bits of rand are cyclic and predictable, so rand is potentially useless for small numbers.

share|improve this answer
Who mentioned the STL? – anon May 4 '09 at 22:13
1  
@Neil Butterworth: I did but I edited my post. – Lucas May 4 '09 at 22:15
2  
@Neil - since all answers so far mention the STL, I suspect that the question was quick-edited to remove anunecessary reference. – Michael Burr May 4 '09 at 22:16
rand() isn't useless for small numbers - you can bitshift them out and use only the more random high bits if you really need to. – Chris Lutz May 4 '09 at 22:20
@Chris, you can if the size of the random number is known, but if the required size of the random number changes during runtime (such as shuffling a dynamic array etc) it would be difficult to work around such a caveat. – dreamlax May 4 '09 at 22:30
show 1 more comment

Have a look at ISAAC (Indirection, Shift, Accumulate, Add, and Count). Its uniformly distributed and has an average cycle length of 2^8295.

share|improve this answer

You want to use rand(). Note (VERY IMPORTANT): make sure to set the seed for the rand function. If you do not, your random numbers are not truly (pseudo)random. This is very, very, very important. Thankfully, you can usually use some combination of the system ticks timer and the date to get a good seed.

share|improve this answer
1  
Two points a) your random numbers are not "truly" random, no matter how you seed the generator. And b) it is very convenient to have the pseudo-random sequence always be the same in many circumstances - for testing, for example. – anon May 4 '09 at 22:19
4  
if it's VERY IMPORTANT that your number be truly random, you shouldn't be using the rand() function. – tylerl May 4 '09 at 22:19
The values from rand are not at all "truly" random no matter if you set the seed or not. Given a known seed the sequence is predictable. "Truly" random number generation is difficult. There is no entropy involved with rand. – dreamlax May 4 '09 at 22:20
1  
Of course they will - the generator is seeded for you by the library (probably to zero, but that's a valid seed). – anon May 4 '09 at 22:29
1  
Ah, but known algorithm/known seed is essential to debugging any program that uses random numbers. It isn't unusual to log the seed used along with a simulation run so that it can be recreated for more detailed analysis. Not calling srand() at all is equivalent to calling srand(1). – RBerteig May 5 '09 at 0:41
show 2 more comments

Lets go through this. First we use the srand() function to seed the randomizer. Basically, the computer can generate random numbers based on the number that is fed to srand(). If you gave the same seed value, then the same random numbers would be generated every time.

Therefore, we have to seed the randomizer with a value that is always changing. We do this by feeding it the value of the current time with the time() function.

Now, when we call rand(), a new random number will be produced every time.

        #include<stdio.h>
        int random_number(int min_num, int max_num);

        int main(void) {
          printf("Min : 1 Max : 30 %d\n",random_number(0,5));
          printf("Min : 100 Max : 1000 %d\n",random_number(100,1000));
          return 0;
        }

        int random_number(int min_num, int max_num)
        {
            int result=0,low_num=0,hi_num=0;
            if(min_num<max_num)
            {
                low_num=min_num;
                hi_num=max_num+1; // this is done to include max_num in output.
            }else{
                low_num=max_num+1;// this is done to include max_num in output.
                hi_num=min_num;
            }
            srand(time(NULL));
            result = (rand()%(hi_num-low_num))+low_num;
            return result;
        }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.