Skip to content
Snippets Groups Projects
provenance_multiple_3_global_yx.c 299 B
int  y[2], x[2];
int main() {
  int *p = &x[1] + (&y[1]-&y[1]) + 1;
  int *q = &y[0];
  printf("Addresses: p=%p q=%p\n",(void*)p,(void*)q);
  if (memcmp(&p, &q, sizeof(p)) == 0) {
    *p = 11;  // does this have undefined behaviour?
    printf("y[0]=%d *p=%d *q=%d\n",y[0],*p,*q);
  }
  return 0;
}