✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Which Three address code correctly implements the loop with short-circuit?
while (i < n && a[i] != 0) { sum = sum + a[i]; i = i + 1;}