Q107
What will be the output of the following C++ code? #include using namespace std; class Player private: int id; static int next_id; public: int getID() return id; Player() id = next_id++; ; int Player::next_id = 1; int main() Player p1; Player p2; Player p3; cout << p1.getID() << " "; cout << p2.getID() << " "; cout << p3.getID(); return 0;
A.
1 2 3
AnswerB.
2 2 2
C.
1 3 1
D.
1 1 1
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board