Versions Compared

Key

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

...

Wiki Markup
When declaring immutable symbolic values, such as {{ADULT_AGE}} it is best to declare them as a constant in accordance with \[[DCL00-A. Declare immutable values using constenum or enumconst]\].

Code Block
bgColor#ccccff
enum { ADULT_AGE=18 };
/* ... */
if (age >= ADULT_AGE) {
   /* Take action */
}
else {
  /* Take a different action */
}
/* ... */

...