Q106
What is the correct syntax of accessing a static member of a Class? --------------------------- Example class: class A public: static int value; ---------------------------
A.
A.value
B.
A::value
AnswerC.
A->value
D.
A^value
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board