C Programming Function Scope

Last modified by Microchip on 2025/08/26 05:27

The scope of a function depends on its storage class:

  • Static Functions
  • External Functions

The scope of a function is either local to the file where it is defined (static) or globally available to any file in a project (external).