Files
BUT2FI_2026_R3.05/tp/tp1/src/ex2/stack.c
T

10 lines
164 B
C
Raw Normal View History

2026-09-03 07:32:05 +02:00
#include "helpers.h"
#include <stdio.h>
int main (int argc, char **argv)
{
char buf[1 MB];
printf("@ = %p\n",buf);
randomize(buf, 1 MB);
return interlude();
}