@@ -0,0 +1,10 @@
#include "guesser.h"
#include <stdlib.h>
#include <time.h>
int guess_number(int min, int max)
{
srand(time(NULL));
return rand() % max + min;
}
The note is not visible to the blocked user.