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(2 + 1);

expands to

Code Block
bgColor#FFcccc
int a = 81 / (2 + 1 * 2 + 1 * 2 + 1);  /* evaluates to 11 */

...