Files
RedBear-OS/tests/stdlib/rand.c
T
2019-02-20 19:27:18 +01:00

9 lines
131 B
C

#include <stdlib.h>
#include <stdio.h>
int main(void) {
printf("%d\n", rand());
srand(259);
printf("%d\n", rand());
}