Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: got rid of the title "Compliant Solution (Memory-Mapped Devices)" which was confusing

...

Code Block
bgColor#ccccff
langc
int *p;
/* ... */
(*p)++;

...

 

Another possibility is that p is being used to reference a memory-mapped device. In this case, the variable p should be declared as volatile.

...