lang-bootstrap/05/main.c
2022-02-16 22:58:16 -05:00

15 lines
249 B
C

#define _STDLIB_DEBUG
#include <math.h>
#include <stdio.h>
#include <signal.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <float.h>
int main(int argc, char **argv) {
srand(time(NULL));
printf("%d\n",rand());
return 0;
}