Answer Posted / khan
Static member functions give internal linkage. The function
declared as static is not visible outside the file in which
it is declared. It is not associated with "this" pointer and
it can be invoked using class name instead of depending on
individual object. It can access only static members of the
class.
| Is This Answer Correct ? | 13 Yes | 4 No |
Post New Answer View All Answers
What do nonglobal variables default to a) auto b) register c) static
Write a note about the virtual member function?
Differentiate between an array and a list?
what are function pointers?
What is guard code in c++?
why and when we can declar member fuction as a private in the class?
Difference between pointer to constant vs. Pointer constant
Explain the problem with overriding functions
the maximum length of a character constant can be a) 2 b) 1 c) 8
What's the "software peter principleā?
Is it possible to get the source code back from binary file?
What are the benefits of c++?
What is one dimensional array in c++?
Does std endl flush?
Evaluate the following expression as C++ would do :8 * 9 + 2 * 5 a) 82 b) 79 c) 370 d) list