Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

//Program to show inheritance

class Father { final int a=10; }

class Child extends Father { public static void main(String arg[]) { Child c=new Child(); System.out.println(c.a); } }

You might also like