Define Internal static storage class - computer programming?
The Internal static variables are those that declared inside a function. The scope of the internal static variables extends up to end of function but the value remains till the end of the program. It can be used to hold values between function calls.