Question 37: In C++, which of the following statements regarding the code below are valid?

来源:互联网 发布:磨伴windows桌面 编辑:程序博客网 时间:2024/05/23 14:37

 

    A. The output will be:

    5

    10

    B. Outer class cannot access its nested class's private members.

    C. The relationship between class Inner and class Outer is not valid C++ syntax.

    D. Inner class cannot access its containing class's private members.

    E. The output will be:

    10

    5