C++
Programming and Technical
Describe the main characteristics of static functions.
Read Solution (Total 1)
-
- memory allocated in heap area.
can be called using class name without instantiating the class.
only single copy is created.
consists of operations on static field only.
non static fields cannot be used.
- 11 years agoHelpfull: Yes(0) No(0)
C++ Other Question