#include <stdio.h>

void initInt0(int *p)
{
  *p = 0;
}

int main(void)
{
  int i = 5;

  initInt0(&i);
  printf("%d\n",i);
}

