-All functions are global by default in a C program/file.
-But, static keyword makes a function as a local function which can be assessed only by the program/file where it is declared and defined.
-Other programs/files can't access these static functions.