Guest User

Untitled

a guest
Sep 19th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.21 KB | None | 0 0
  1. int rand_int(int min, int max)
  2. {
  3.     static int Init = 0;
  4.     int rc;
  5.     if (Init == 0)
  6.     {
  7.         srand(time(NULL));
  8.         Init = 1;
  9.     }
  10.     rc = (rand() % (max - min + 1) + min);
  11.     return (rc);
  12. }
Add Comment
Please, Sign In to add comment