Describe the main characteristics of static functions?



Describe the main characteristics of static functions?..

Answer / atul shankhwar

The main characteristics of static functions include,

 It is without the a this pointer,
 It can't directly access the non-static members of its class
 It can't be declared const, volatile or virtual.
 It doesn't need to be invoked through an object of its class, although for convenience, it may.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

Can manipulators fall in love?

0 Answers  


reading material is provided 3 books for c++ if u need more do let me know thnx i hve lots of material do let me know if u want it

2 Answers  


What do you mean by vtable and vptr in c++?

0 Answers  


What are the syntactic rules to be avoid ambiguity in multiple inheritance?

0 Answers  


True or false, if you keep incrementing a variable, it will become negative a) True b) False c) It depends

0 Answers  






Write a program to encrypt the data in a way that inputs a four digit number and replace each digit by (the sum of that digit plus 7) modulus 10. Then sweep the first digit with the third, second digit with the fourth and print the encrypted number.

0 Answers   CIIT Wah,


What are the different types of comments allowed in c++?

0 Answers  


When should I use unitbuf flag?

0 Answers  


Explain selection sorting?

0 Answers  


What is code reusability in c++?

0 Answers  


What is the difference between C and CPP?

0 Answers   iNautix,


How can we access protected and private members of a class?

0 Answers  


Categories