Files
BUT2/SCR/SCR3.1/TP01/Exercise2/subject/huge.c
2025-09-26 08:56:34 +02:00

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();
}