Skip to content

Instantly share code, notes, and snippets.

@arpitbbhayani
Created January 2, 2020 19:30
Show Gist options
  • Save arpitbbhayani/dbe19284747023c3b35d1da71c6b5e8f to your computer and use it in GitHub Desktop.
Save arpitbbhayani/dbe19284747023c3b35d1da71c6b5e8f to your computer and use it in GitHub Desktop.
generating random number using datetime.h in c
int
get_random_number(int max) {
return time(NULL) % max;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment