You must log in or register to comment.
int main() { useless: int x = 10; if (1) { goto useless; } }
Yea, I saw C style and was disappointed when it didn’t abuse gotos.
This is the real way!
int main() {
useless:
int x = 10;
if (1) {
goto useless;
}
}
Yea, I saw C style and was disappointed when it didn’t abuse gotos.
This is the real way!