1 2 #include <stdlib.h> 3 main(void)4 int main ( void ) 5 { 6 volatile int* a = malloc(1000); 7 a[0] = 0; 8 return a[0]; 9 } 10