292.
class A
{
    public A()
    {
    }
}
class B : A
{
    public B()
    {
    }
}
class C : B
{
    public C()
    {
    }
}

if C c = new C(), what will be the order of constructors called?

No description found.