C
Programming and Technical
What is static identifier?
Read Solution (Total 2)
-
- static variables retain there value through out the execution.
The static identifier is used for initializing only once, and the value retains during the life time of the program / application. A separate memory is allocated for ‘static’ variables. This value can be used between function calls.
The default value of an uninitialized static variable is zero. A function can also be defined as a static function, which has the same scope of the static variable - 10 years agoHelpfull: Yes(1) No(0)
- static is an Identifier
dafault value of static variable is= zero
Scope of static variable within the program; - 10 years agoHelpfull: Yes(1) No(0)
C Other Question