pastebin

Paste #82737: Untitled C paste by 113.108.133.42

#include <stdlib.h>
#include <stdio.h>

int main(int argc, char *argv[])
{
	int *p = malloc(sizeof(int) * 10);
	int i = 0;
	printf ("%d\n", p);
	for ( i = 0; i < 12000; ++i)
	{
		*(p + i) = 100;
	}
	
	return 0;
}

Private
Wrap long lines

3 + 4 =