✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Consider the following Three-Address Code (TAC) program:
| 1. | a = b + c |
| 2. | if a > 0 goto 5 |
| 3. | b = a - 1 |
| 4. | goto 6 |
| 5. | c = a + 1 |
| 6. | d = c + 2 |
| 7. | if d > 5 goto 3 |
| 8. | print d |
How many leaders does this program have?