1.

What Is A Static Function?

Answer»

STATIC function is a SPECIAL type of function whose scope is limited to the source file where the function is defined and can not be used other than that file. This feature HELPS you to hide some functions and to provide some standard interface or wrapper over that LOCAL function.

Static function is a special type of function whose scope is limited to the source file where the function is defined and can not be used other than that file. This feature helps you to hide some functions and to provide some standard interface or wrapper over that local function.



Discussion

No Comment Found