If the subclass does not have the function of override parent class, will the subclass of subclass call super correctly?

For example, class A override BeginPlay(), and class B derives from class A without overriding it. Class C derives from class B. and in C`s BeginPlay() override,wrote Super:: BeginPlay(), so does class C called BeginPlay() of class A?

I don’t think so. I can’t confirm though.

In my attempt, if I do so, the UE will not be able to find the function.So we must override all function each class whether some intermediate classes need to be override or not.It would be nice if we could automatically look up for the nearest super class.