C++程序  |  10行  |  105 B


#include <stdlib.h>

int main ( void )
{
  volatile int* a = malloc(1000);
  a[0] = 0;
  return a[0];
}