Files
BUT2FI_2025_R3.05/tp/tp1/src/ex2/buf.c

10 lines
140 B
C
Raw Normal View History

2025-09-02 17:14:06 +02:00
#include "helpers.h"
2025-09-03 12:18:38 +02:00
static char buffer[16 MB] = {0};
2025-09-02 17:14:06 +02:00
int main(int argc, char **argv)
{
2025-09-03 12:18:38 +02:00
randomize(buffer, 16 MB);
2025-09-02 17:14:06 +02:00
return interlude();
}