class Test
{
static int a=10;
static int b=20;
static class Inner
{
int c=30;
void m1()
{
System.out.println(a);
System.out.println(b);
System.out.println(c);
}
};
public static void main(String[] args)
{
Test o=new Test();
Test.Inner i=new Test.Inner();
i.m1();
}
};
Our website is made possible by displaying ads to our visitors.
Please help us continue to provide you with free. So please disabling your ad blocker.