Judger/tests/13/Main.c
2016-01-24 10:22:30 +08:00

16 lines
221 B
C

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
// 300m
int big_size = 300 * 1024 * 1024;
int *b = NULL;
b = (int *)malloc(big_size);
memset(b, 0, big_size);
return 0;
}