Skip to content

Instantly share code, notes, and snippets.

@zerohours
Created November 12, 2012 19:26
Show Gist options
  • Save zerohours/4061345 to your computer and use it in GitHub Desktop.
Save zerohours/4061345 to your computer and use it in GitHub Desktop.
Hay que ser gilipollas para hacer esto
int getRandomize(int randMax)
{
srand ( time(NULL) );
int randNum; = rand() % randMax + 1;
return 2;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment