r305_dm/Exo1/ex1bis/buf.c

11 lines
167 B
C
Raw Normal View History

2023-09-07 15:38:31 +02:00
#include "helpers.h"
static char buf1[8 MB] = {0};
static char buf2[16 MB] = {0};
int main(int argc, char **argv)
{
randomize(buf2, 16 MB);
return interlude();
}