When the keyword static is used in C?
Sigiloso
1. If a variable is defined as static within a function, it retains the value when the function is called multiple times. 2. If a variable is defined as static outside a function, it is global within the module. 3. If a function is defined as static, it can be used only within the module.