✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Kakšna bo vrednost spremenljivke x, ko se izvede naslednja koda?
int x, j;for (x = 0, j = 1; x < 10; x++) { if (x % 2) j++; if (x % 3) continue; if (x % j) break;}