Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

...

Code Block
bgColor#FFCCCC
langc
i_array[0] = 2719;
i_array[1] = 4435;
i_array[2] = 0042;

Wiki MarkupAlthough it may appear that that {{i_array\[2]\}} is assigned the decimal value 42, it is actually assigned the decimal value 34.

Compliant Code Example

To avoid using wrong values and make the code more readable, don't preface constants with zeroes if the value is meant to be decimal.

...