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
Write a program which uses functions like strcmp(), strcpy()? etc
What is the rule of three?
Is empty stack c++?
Why is c++ a mid-level programming language?
Can a class be static in c++?
What is the best c++ book for beginners?
What does namespace mean in c++?
Describe Trees using C++ with an example.
Explain the difference between class and struct in c++?
What are the advantages of using friend classes?
What are vtable and vptr?
What are the advantages of using const reference arguments in a function?
Explain the extern storage classes in c++.
write a c++ program to create class student having datamember name,Roll_no,age,and branch intilcization all the member using constructor print the all the details on the screen.
What is istream c++?