Initial commit

This commit is contained in:
Alexandru
2026-03-28 04:01:53 +02:00
commit d5f57d6b68
3 changed files with 60 additions and 0 deletions
+10
View File
@@ -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;
}