Files
2026-03-28 04:01:53 +02:00

11 lines
149 B
C

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