Why do local variables need to be initialized in Java?
Java
July 11, 2020
Java has local, instance and static variables. Instance and static variables doesn't need to initialized before usage as they have default values. Why local variables don't have a default value?