Amazon Interview Question

What does the 'static' keyword mean in C++?

Interview Answer

Anonymous

Dec 22, 2010

static is used to access methods/properties without any class instance and directly via class.

1