Explore Library
Code QuizBeginner

Using an Uninitialized Variable

Find why this local variable causes a compile error.

Codejava
public class Init {
    public static void main(String[] args) {
        int count;
        System.out.println(count);
    }
}

What is the bug in this code?