mirror of
https://github.com/ioacademy-jikim/debugging
synced 2025-06-08 08:26:14 +00:00
10 lines
105 B
C
10 lines
105 B
C
|
|
#include <stdlib.h>
|
|
|
|
int main ( void )
|
|
{
|
|
volatile int* a = malloc(1000);
|
|
a[0] = 0;
|
|
return a[0];
|
|
}
|