Skip to content
Snippets Groups Projects
klw-itp14-2.c 176 B
Newer Older
Andre Maroneze's avatar
Andre Maroneze committed
int  x=1, y=2;
int main() {
  int *p = &x + 1; 
  int *q = &y;
  _Bool b = (p == q); // free of undefined behaviour?
  printf("(p==q) = %s\n", b?"true":"false");
  return 0;
}