Files
BUT2/SCR/SCR3.1/TP01/Exercise2/subject/buf.c

10 lines
140 B
C
Raw Normal View History

2025-09-26 08:56:34 +02:00
#include "helpers.h"
static char buffer[16 MB] = {0};
int main(int argc, char **argv)
{
randomize(buffer, 16 MB);
return interlude();
}