Files
SCR.3.1/TP1/scripts/huge.c

13 lines
193 B
C
Raw Normal View History

2025-10-02 15:09:43 +02:00
#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();
}