• rand function
    I would like to control the output of the below random function. I want that it return a number between the min and the max parameters. but it didn't. can you tell what should I change to do that. in...
  • Rand function Method
    I would like to know on which method Keil rand() function generates the random values.Are they using LCM or Linear Feedback shift register or any other method? Please help me in this. Thanks Gopi...
  • srand() / rand()
    Hello, Is there a way to have real different random numbers? For the moment, I'm using the rand() function, but this one is generating the same sequence over and over again. I have to unpower my application...
  • rand return rang
    Hello as i saw here : http://www.keil.com/support/man/docs/ca/ca_rand.htm The rand function generates a pseudo-random number between 0 and 32767. the rand range is 0-32767. so why i get...
  • problem in Generating random nmber using rand() function in embedded c
    i modified the example random number generation program from keil help section. keil example program Code: #include <stdlib.h> #include <stdio.h> /* for printf */ void tst_rand (void) { int i;...