151k views
2 votes
_________ local variables retain their value between function calls.

1 Answer

2 votes

Answer: static

Step-by-step explanation:

variables when declared static gets called statically meaning whenever a function call is made it get stored and it is not required to get the variable again when the function is again called. There scope is beyond the function block

User TheSealion
by
5.4k points