How many times does 'Telangana' get printed? #include int main() { int x; for(x = -1; x <= 10; x++) { if(x < 5) continue; else break; printf("Telangana"); } return 0; }
Show Hint
Code after a break or continue is not executed in that loop iteration. Watch the control flow carefully.
The statement `printf("Telangana");` comes after `break`, so it is never executed. Loop continues while \(x<5\), and for \(x = 5\), `break` is executed before reaching the print.