13 lines
171 B
C
13 lines
171 B
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <time.h>
|
|
|
|
int main(void) {
|
|
// To jest niebezpieczne!
|
|
srand(time(0));
|
|
|
|
int a = rand();
|
|
printf("%d\n", a);
|
|
|
|
return 0;
|
|
}
|