Advertisement
Xioth

C - TP3 - random.c

Jan 27th, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.23 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <time.h>
  4.  
  5. int main(int argc, char *argv[])
  6. {
  7.     if (argc != 2)
  8.         exit(1);
  9.  
  10.     int faces = atoi(argv[1])+1;
  11.  
  12.     srand(time(NULL));
  13.     printf("%d", rand()%(faces-0) + 0);
  14.    
  15.     return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement