
int
main (void)
{
  int *p_i;
  p_i = (int *)malloc((size_t)sizeof(int));
  memset(p_i,0,(size_t)sizeof(int));
  return (*p_i);
}

