Skip to main content
Journey Uncommon Logo
JourneyUncommon
hardJavaif switch loopsSingle-choice MCQ

What does this code throw?

static int f(int n) { return f(n - 1); }\nf(5);