Versions Compared

Key

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

...

Code Block
bgColor#ccccff
langc
#include <stdio.h>
 
void func(void) {
  int i;
  float x
  int n = scanf("%d%f", &i, &x); /* Valid defined behavior  */
 
  /* ... */
}

Outer-to-

...

Inner Assignments between Restricted Pointers

The assignment between restricted pointers declared in an inner nested block from an outer block has well-defined behavior.

...