Tagged Questions

12
votes
10answers
586 views

Random numbers in C

srand(time(NULL)); for(i = 0; i < n; i++){ for(j = 0; j < (n-1); j++){ a[i][j] = rand(); } } I try to generate random numbers, but they ...
7
votes
6answers
258 views

Whats the difference between srand(1) and srand(0)

I just found out the hard way that srand(1) resets the PRNG of C(++) to the state before any call to srand (as defined in the reference). However, the seed 0 seems to do the same, or the state before ...
4
votes
4answers
162 views

What is the most correct way to generate random numbers in C with pthread

I have several threads running concurrently and each of them must generate random numbers. I want to understand if there is a pattern to follow, to understand if it is correct to initialize the ...
3
votes
4answers
240 views

srand() — why call only once?

This question is a doubt I have on a comment in this question Recommended way to initialize srand?. The first comment says that srand() should be called only ONCE in an application. Why is it so? ...
2
votes
4answers
156 views

C custom random function

I would like to create a fast lightweight function in C language that returns a pseudo random unsigned char. The challenging part for me (an ANSI C programmer)is that I cannot use the <stdio.h> ...
2
votes
2answers
144 views

How would I call a function several times changing the random numbers inside the function every time it is called?

I am making a game for my C class (actually remaking one) and I have a function that produces random prices. The problem is that I need to call this function 60 times throughout the game and have the ...
1
vote
4answers
146 views

C Programming - bizarre output from rand()

Below is a sample program I got to practice the use of the rand() function. The weirdest thing is that every time the program is run, the first number generated by rand() (rand[0] in the program's ...
1
vote
1answer
184 views

srandom(time(NULL)) giving warning - pointer to integer without a cast

In iPhone (Xcode 4), using the function, srandom(time(NULL)); both srand and srandom is giving this warning. But when running its working fine. Why I am getting the warning in one of my class ...
1
vote
2answers
267 views

C, Cygwin, and compiling drand and srand

I have a C code which I am trying to compile in Cygwin and which contains both the drand() and srand() functions. I had Windows Vista with Cygwin installed and the code seemed to comile fine, but my ...
1
vote
4answers
865 views

srand function in C

I am trying to code a random number generation function in embedded C where I can't include the math.h file. Thats why I'm not able to use the seed srand function. Is there any other way to seed it ...
0
votes
2answers
50 views

Error with C functions rand() and s(rand) applied to vectors

I actually ask rand() to generate numbers between 1 and 10(rand() %10 +1, with srand(time(NULL)) before) and the first value is ALWAYS higher than 10: it's a random one too, between 10 and 20. I ...
0
votes
3answers
220 views

Multidimensional array with rand()

I want to create a multidimensional array with just two values : 0 or 1. I use the srand/rand functions but array contains only 0. Here is the code : #define NB_LINE 4 #define NB_COLUMN 11 int ...
0
votes
4answers
238 views

Can anyone see what is wrong with this (time related functions in C)

#include <stdio.h> #include <stdlib.h> #include <time.h> static struct tm createDate(unsigned day, unsigned mon, int year) { struct tm b = {0,0,0,day,mon-1,year-1900}; return ...