Answer:
C. A static local variable is visible to other functions
Step-by-step explanation:
C. A static local variable is visible to other functions.
this statement among the given four statement is False while the others are true because Static variables are defined as the variables whose value remains constant through out the program once initialized. And local static variables are variables whose scope finishes after its block , so they are not visible to other function.