```c int main() { int x = 5; int y = 7; int z = x + y; // Probably show else if and all those goodies if (x > y) { // something... } else { // another... } return 0; } ``` - [ ] Examples of precedence - [ ]