experiments/nn/test.c

7 lines
86 B
C
Raw Normal View History

2024-05-27 21:30:27 +12:00
#include <stdio.h>
int main() {
srand(time(NULL));
printf("%d\n", rand());
}