Hi,
I have been finding answer for the question on static variables and functions.
Suppose we declare function/variable to be static then how can we use same function/variable in the other files or how do we declare that function or variable in other file?
_shantanuk.
Comments
: Hi,
: I have been finding answer for the question on static variables and functions.
: Suppose we declare function/variable to be static then how can we use same function/variable in the other files or how do we declare that function or variable in other file?
:
: _shantanuk.
:
Static functions and external static variables are private to the file where they are defined. They cannot be called or used directly in other source files.
Steph