Skip to content

Instantly share code, notes, and snippets.

@libbkmz
Created April 11, 2019 17:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save libbkmz/0a3bf8e607b5d1ee96f5a7a1785a00bd to your computer and use it in GitHub Desktop.
Save libbkmz/0a3bf8e607b5d1ee96f5a7a1785a00bd to your computer and use it in GitHub Desktop.
#include <stdlib.h> // for rand() and RAND_MAX
int randint(int min, int max) {
return (rand() % (max + 1 - min)) + min;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment