C Tutorial/stdlib.h/srand

Материал из C\C++ эксперт
Версия от 10:32, 25 мая 2010; Admin (обсуждение | вклад) (1 версия: Импорт контента...)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

srand

Item Value Header file stdlib.h Declaration void srand(unsigned int seed); Function sets a starting point for the sequence generated by rand(). Return returns pseudorandom numbers.


#include <stdio.h>
  #include <stdlib.h>
  #include <time.h>
  int main(void)
  {
    int i, stime;
    long ltime;
    /* get the current calendar time */
    ltime = time(NULL);
    stime = (unsigned) ltime/2;
    srand(stime);
    for(i=0; i<10; i++) printf("%d ", rand());
    return 0;
  }