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 |
What is flush programming?
What is a c++ map?
int *p = NULL; printf("%1d",p) ; what will be the output of this above code?
What is the Difference between "printf" and "sprintf"?
7 Answers iSoft, PentaWare, TCS,
How many bit combinations are there in a byte?
How would you call C functions from C++ and vice versa?
What is the use of endl in c++?
Which c++ compiler is best?
why we cant create array of refrences
What is c++ 11 and c++ 14?
Describe run-time type identification?
What is difference between class and structure in c++?