What will be the output of the following Java snippet?
public class Geeks {
static int $count = 5;
public static void main(String[] args) {
System.out.println($count);
}
}
5
Compilation Error
Runtime Error
Undefined Behavior
This question is part of this quiz :
Java Basics and Identifiers