This commit is contained in:
2025-09-03 12:18:38 +02:00
parent d523d15990
commit 990b724df5
12 changed files with 15 additions and 21 deletions

12
tp/tp1/src/ex2/huge.c Normal file
View File

@@ -0,0 +1,12 @@
#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();
}