1
0
mirror of https://github.com/ioacademy-jikim/debugging synced 2025-06-10 09:26:15 +00:00
2015-12-13 22:34:58 +09:00

10 lines
105 B
C

#include <stdlib.h>
int main ( void )
{
volatile int* a = malloc(1000);
a[0] = 0;
return a[0];
}