Page 1 of 1

What is the correct syntax of accessing a static member of a Class?

Posted: Wed Jul 13, 2022 7:52 pm
by answerhappygod
---------------------------
Example class:
class A
{
public:
static int value;
}
---------------------------
a) A.value
b) A::value
c) A->value
d) A^value