A LOCAL <code>int</code> variable used without being initialized causes
- A
Runtime exception
- B
Defaults to undefined
- C
Defaults to 0
- Dcheck_circle
Compile error
Explanation
Locals (unlike instance fields) must be definitely assigned before use; otherwise compile error.