🥰2
. What is the final result of the following code?
int x = 5, y = 10; if (x < y) { goto label; } x = y; label: y = x;
int x = 5, y = 10; if (x < y) { goto label; } x = y; label: y = x;
Anonymous Quiz
15%
x=10. y=5.
31%
x=10 y=10
31%
The code has error
22%
The goto statement will be skipped and not executed.
👍1