What will be output of following code?public class Main { public static void main(String[] args) { int i; i = i + 5; System.out.println(i); }}
Compile time error
5
0
None of above