Question:medium

If a function is defined as static, it means

Show Hint

Using static on functions is a common and excellent practice in C programming to hide helper functions from the global scope, effectively achieving a form of encapsulation.
Updated On: May 9, 2026
  • The value returned by the function does not change
  • all the variable declared inside the function automatically will be assigned initial value of zero
  • It should be called only within the same source code program file.
  • None of the other choices as it is wrong to add static prefix to a function
Show Solution

The Correct Option is C

Solution and Explanation

Was this answer helpful?
0