school/myRand.c
2024-02-12 14:35:40 +01:00

4 lines
84 B
C

#include "myRand.h"
int myrand(int min, int max){
return rand()%(max-min)+min;
}