Tagged Questions
0
votes
1answer
34 views
What is the fastest way to generate pseudo random number by 8-bit MCU?
Linear congruential generator is a good algorithm. But is there any faster algorithm?
-1
votes
1answer
28 views
Indexing of array for random order quiz program
First, I have coded the main function of a quiz program in C and it works, builds, etc...
What I need to do next is use the random numbers that you generate to index the question array.
My ...
0
votes
4answers
90 views
Is there a better function that rand()?
I have a program, in C, which creates an array of 1000 integers using a random number from 0-999 and then performs some sort of algorithm on that array. In order to test the algorithm's running time, ...
0
votes
4answers
51 views
Avoiding Repeated seed generation using srand()
I have a typical situation where I need to generate a batch of random numbers. I have used a loop which generates 100 random numbers on each pass:
for(int i=0; i<npasses; i++)
{
...
-2
votes
2answers
52 views
how to define rand() acording to probability?
having 1 bag with 3 equal balls
i made code to simulate number of times each ball comes off (works flawlessly so far)
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
...
0
votes
2answers
41 views
Fill 1D Array Using Permutation of 1D Array
My goal is to create a two-dimensional array, which will be filled using a random permutation of a one-dimensional array. The first row and column of tab should not be filled. This is what I have ...
3
votes
2answers
40 views
C: rand() with min and max values including negatives
I am trying to dynamically allocate an array of doubles and set each element to a random value within a range of positive or negative numbers, but I am having difficulty. Right now, I can only figure ...
2
votes
4answers
42 views
srand() is not working below initialization of array randomly
Below but it always gives me 42 as SIZE. I wanted to randomise SIZE with srand(time(NULL)) but obviously it is not working because it is below randomisation of SIZE. When I try to add it before ...
-1
votes
4answers
58 views
Random array size at the beginning?
I want to make a random sized array everytime program executes at first but compiler yells me
"Error 2 error C2466: cannot allocate an array of constant size 0"
Is there any way that I can ...
0
votes
2answers
44 views
My program is setting the first array element to the NUM_EL rather than a random number but the rest of the elements get randoms
#define NUM_EL 10
int randomArray1[NUM_EL];
int randomArray2[NUM_EL];
int sumArray[NUM_EL];
//Function Protocol
int IntializeArrayWithPointers(int, int, int);
void DisplayArrayDataWithPointers(int);
...
-2
votes
2answers
52 views
drand48() only generating increasing random numbers? [closed]
I am using the following code
#include <time.h>
srand48((unsigned int) time(NULL)); //seed for drand48--this is in the main
double drand,value;
drand = drand48();
value = ...
9
votes
2answers
115 views
How can I make OSX's rand() fail the spectral test?
For the purposes of a programming class I'm trying to illustrate the weaknesses of the random number generators that usually come with the standard C library, specifically the "bad random generator" ...
1
vote
2answers
88 views
Randomly selecting N distinct numbers without repetition [duplicate]
I want to have a set of randomly selected N distinct numbers from {1,2,...(k-1),K} where K>N. I want to write a C program to efficiently do this.
Any help appreciated.
Note:
The naive program is ...
0
votes
1answer
61 views
is truncated mt_rand() safer?
I came across those articles:
http://phpsecurity.readthedocs.org/en/latest/Insufficient-Entropy-For-Random-Values.html
http://crypto.di.uoa.gr/CRYPTO.SEC/Randomness_Attacks_files/paper.pdf
which ...
3
votes
3answers
111 views
How to get a larger random number from the c function rand()
I am in a coding environment where I only have access to some most basic c functions. #include'ing other lib is not feasible.
In this environment, I can call rand() which gives me a random number ...
0
votes
3answers
74 views
Putting output from rand() into an array
I wrote a small dice rolling program that will print out the results of however many dice rolls that are entered. I want to count how much each number occurs so I thought I would put the output from ...
2
votes
2answers
70 views
Verify Pseudo-Random Data in C
I am writing a disk exerciser program and I want to be able to generate some random data to fill a buffer, write it out to disk, and then verify that the data is 'correct' once it is read back into ...
1
vote
3answers
139 views
Random Number Seed Generator: Using System On Time
I'm trying to understand why this code is a security flaw. From my understanding, it is not safe to generate a random number seed using the system time when the program is turned on, but how is that ...
2
votes
2answers
116 views
Generating the list of random numbers with certain average difference
I have to generate a list of random numbers and they have to have a given average difference. For example, a given average difference is 10, so these numbers are good: 1 3 5 9 15 51. What I do, is ...
0
votes
3answers
72 views
Generating two independently seeded random number lists in C
My program has two different functions, both of which call random numbers. I'd like to by able to independently seed the random numbers called by each function, so that I could run the full program ...
0
votes
0answers
22 views
How to generate random non-singular matrix in GF(2m) using crypto secure prng
I am trying to implement McEliese cryptosystem in C. Please suggest me how can I generate a non-singular matrix with elements in GF[2m) ? I have to do this in C.. I tried googling but could not find ...
1
vote
2answers
107 views
C Programming 'Craps' Game [closed]
I'm doing a learning task for my C programming course, I've been asked to do the following:
Task 2. Craps.
In the game of Craps, a "Pass Line" bet proceeds as follows. Using two six-sided ...
0
votes
2answers
87 views
Generating random integer values within a range in C [duplicate]
How do I go about generating random integer values between a range (in this case 1-12 including 1 and 12) in the C language?
I've read about seeding (srand()) and using rand() within a range but am ...
1
vote
9answers
107 views
What's wrong with my code? Generate Unique Random Number
I'm trying to generate 10 unique random numbers between 1 and 10. I keep getting duplicate numbers. Can someone tell me what the problem is? What am I missing or need to fix in my code? Thank you!
...
1
vote
5answers
115 views
What is the best way to seed srand()? [duplicate]
The way I learned was to initially seed the random number generator with srand(time(NULL)) and then use calls to rand() to generate random numbers. The problem with this approach is if I run my ...
3
votes
3answers
108 views
Trick the randomizer in C
I want to get random numbers between 1 to 10.
It actually works, but when it's in a loop, I don't really get random numbers.
int randomNum;
srand ( (unsigned int)time(NULL) );
randomNum = rand() % ...
-1
votes
3answers
82 views
using randomize() without time.h in C
I was able to run code that uses the randomize function without including the time.h library. is it automatically included with some other libraries i might have already included in my code? Below is ...
0
votes
1answer
57 views
Generating random threads at random times in C
Is it possible?
I'm basing my code on this one:
http://cnds.eecs.jacobs-university.de/courses/osn-2004/s3.pdf
The thing I want to change is that I want to generate the east() and west() functions ...
3
votes
2answers
185 views
Cryptographic pseudo random number generator in embedded system?
I am working on the STM32L152xx that has a peripheral to perform AES128 (CBC) encryption. However, to initialize a random IV I am looking for a good scheme to create cryptographically secure random ...
-1
votes
3answers
120 views
Problems when calling srand(time(NULL)) inside rollDice function
When I used at first srand(time(NULL)) in rollDice() function it did not work. But when I put it in main, it works. Why is that?
Can you tell me the logic?
#include <stdio.h>
#include ...
-6
votes
1answer
115 views
C adding x items to a 2D array in random locations [closed]
Okay so I am writing a program for a school project, the part I can't work out how to do is the user inputs a size for a 2D array say m*n then they input a number x for the number of '' characters to ...
0
votes
2answers
183 views
C/C++ algorithm to produce same pseudo-random number sequences from same seed on different platforms? [duplicate]
The title says it all, I am looking for something preferably stand-alone because I don't want to add more libraries.
Performance should be good since I need it in a tight high-performance loop. I ...
0
votes
1answer
90 views
How to successfully use rand in C when making a dice roll, without it taking 1000s of turns before getting it right? [closed]
So I have made the following program successfully that will allow the user to punch in a number(between 1 to 12) and then tell the user after how many tries did that did the two dice roll the number ...
0
votes
1answer
171 views
Prediction of the next number generated by C (glibc) rand()
Given a series of numbers generated by rand(), how can I predict the next value? Brute force is out of the question.
I'm aware that rand() is basically a linear congruential generator, but also makes ...
0
votes
4answers
93 views
Custom rand() function return the same value
For reference, I followed this thread.
I call this function from the main() function which return a random value in range [0, N] :
int randr(int min, int max) { int r = (rand() % (max+1-min)+min); ...
0
votes
1answer
55 views
mysteriously changing structure members (pointers involved):
Ok so I'll start this off by saying I'm quite new to programming, never mind this forum, and so if there's any more/less information I should give just let me know. I hope I'm not asking a stupid ...
-1
votes
3answers
116 views
How to generate random letters (capital letters) and save into a text file in C? [closed]
How i can generate for example 100 random letters (capital letters) and save into a text file in C?
i read rand() and srand() function for generate random numbers. but for letters, i don't know what ...
3
votes
3answers
128 views
Adding -1,0, or 1 randomly to a number in C [closed]
I am trying to figure out a way that I can randomly generate -1,0, or 1 using srand and rand. Whenever I do, however, I am only able to get the values inside the range generated and never the -1 or 1.
...
2
votes
3answers
298 views
Random Number Generator with Beta Distribution
I need the c or c++ source code of a function like betarand(a,b) that produces random number with beta distribution . I know that I can use boost library but I'm going to port it for CUDA architecture ...
18
votes
2answers
489 views
Why does the C++ stdlib rand() function give different values for the same seed across platforms?
I understand that the rand() function generates pseudo-random numbers based on the seed it is given, and that on a given platform it will always generate the same sequence of numbers from the same ...
-1
votes
1answer
343 views
C Programming Create a random array of length N (user input) of integers [closed]
I want to create a random array of length N (user input) of integers and get the product all multiples of 5 and 11 in the array.
At this stage now.
int main (void)
{
int i=0;
while( ...
1
vote
5answers
108 views
How to access a C array in random order ensuring that all elements are visited at most once
Say I have a very big array of 64 bit integers, say a million of them defined like this:
uint64_t myNumbers[1000000];
The challenge is how to access each of those elements randomly ensuring that ...
2
votes
1answer
224 views
A good random number generator for C
I need a good random number generator for a program I'm writing in C. It's a fractal flame generator, if you're interested. My images were coming out very grainy, even though I had success with the ...
4
votes
2answers
139 views
Problems of using srand() in libraries
There is a wide use of srand()/rand() calls in 3rd party libraries, with predefined seeds. The problem arises when combining different libraries in the same process. Sometimes it's hard to ensure the ...
0
votes
4answers
143 views
C rand() is not really random [duplicate]
I'm working on an application.
I'm using:
int rand_num = rand() % 100;
To get a random integer between 0 to 99.
Now, let's say I got 41, then restarting my application, it's always 41. Same ...
1
vote
3answers
71 views
See if a number has already been drawn
I have an issue understanding the "do - while" statement in C.
Here is the complete code: http://pastebin.com/uPRvRscd
The program generates 6 numbers ranged from 0 to 50.
None of the 6 numbers ...
2
votes
2answers
151 views
linux random function
I am using Linux random() function to generate random message in CentOS 5.2. I want to reset the seed after 3 random calls. In other words I want the same output in 1st call and the 4th call. Is there ...
1
vote
1answer
181 views
How to simply generate a random base64 string compatible with all base64 encodings
In C, I was asked to write a function to generate a random Base64 string of length 40 characters (30 bytes ?).
But I don't know the Base64 flavor, so it needs to be compatible with many version of ...
1
vote
3answers
84 views
Why does declaring and initialising ruin the random number in C?
I'm making a little game of craps for an exercise out of a textbook.
I have this section of code, which works:
int roll_dice(void) {
int dice1, dice2;
...
0
votes
2answers
94 views
How to generate different random numbers in one single runtime?
Consider this code:
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main ()
{
int ctr;
for(ctr=0;ctr<=10;ctr++)
{
int iSecret;
srand ( time(NULL) ...





