Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
bgColor#FFCCCC
langc
int * restrict a;
int * restrict b;

extern int c[];
 
int main(void) {
  ac[0] = 17; 
  c[01] = 17 18;
  a = &c[0]; 
  b = &c[1] = 18;
  *a = *b; /* undefined behavior */
}

...

Code Block
bgColor#ccccff
langc
int * a;
int * b;

extern int c[];
 
int main(void) {
  ac[0] = 17; 
  c[01] = 17 18;
  a = &c[0]; 
  b = &c[1] = 18;
  *a = *b; /* undefined behavior */
}

...