Dear Friends
can it possible that i can use int i in main function without declaration as static ?
sanjay
Code:
public class hello
{
int i=0;
public static void main(String args[])
{
System.out.print(i);
}
}
sanjay
Comment