We're porting the questions to C++23! Can you help?

You've answered 1 of 163 questions correctly. (Clear)

Question #16 Difficulty: 1

According to the C++23 standard, what is the output of this program?

    #include <iostream>

class A {
public:
  A() { std::cout << 'a'; }
  ~A() { std::cout << 'A'; }
};

class B {
public:
  B() { std::cout << 'b'; }
  ~B() { std::cout << 'B'; }
  A a;
};

int main() { B b; }

Correct!

Member variables are initialized before the constructor is called. The destructor is called before member variables are destroyed.

You can explore this question further on C++ Insights or Compiler Explorer!

Next question

Mode : Training

You are currently in training mode, answering random questions. Why not Start a new quiz? Then you can boast about your score, and invite your friends.

Contribute

Create your own!

Android app

Get Sergey Vasilchenko's CppQuiz Android app.

C++ Brain Teasers

Get the book, support the site! C++ Brain Teasers cover