Output?
public class College
{
int fee;
public College(int fee)
{
fee=fee;
}
void display()
{
System.out.println(fee);
}
public static void main(String...k)
{
College c=new College(20000);
c.display();
}
}


Posted on by