r305_dm/TP1/Exo1/ex1bis/huge.c

13 lines
193 B
C

#include "helpers.h"
int main(int argc, char **argv)
{
char *under = malloc(96 KB);
randomize(under, 96 KB);
char *over = malloc(256 KB);
randomize(over, 256 KB);
return interlude();
}