Versions Compared

Key

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

...

As a result, the invocation

Code Block
bgColor#FFcccc
int a = 81 / CUBE(i);

expands to

Code Block
bgColor#FFcccc
int a = 81 / i * i * i;

which evaluates as

Code Block
bgColor#FFcccc
int a = ((81 / i) * i) * i);  /* evaluates to 243 */

...