C Programming Function Scope

Last modified by Microchip on 2023/11/09 09:06

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).