 
                            ...
| 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. 
...
 
                            ...
| 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. 
...