Global Variable in C
Global variables in C are declared outside any functions and usually at the top of the program as shown below. They can be used in the program inside any block of code. Properties of a Global Variable: Global variables are defined outside a function, usually on top of the program. The lifetime of a Global … Read more