Versions Compared

Key

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

...

Code Block
int a = some_value;
char b = some_character;

if ((a + b) > 1.1f) {
  //do Do something
}

The result of (a+b) is then converted to a float, and the comparison operator is finally applied. 

...