#include "guesser.h" #include #include int guess_number(int min, int max) { srand(time(NULL)); return rand() % max + min; }