C
Programming and Technical
Programming
Basics
What does static variable mean?
Read Solution (Total 2)
-
- static variable means once we define a variable we cant change the value of that variable.
- 11 years agoHelpfull: Yes(0) No(1)
- Static variable is a variable whose value persists between successive calls to a function.It is not limited to a function. As you change the value of a static variable in a function than the changed value is passed down to the other function in which it is further used.
- 7 years agoHelpfull: Yes(0) No(0)
C Other Question