Local and Global Variables in C

Local Variables in C

Variables declared inside the body of a function or the main program, these variables are called Local Variables.

Example:

 

Global Variables in C

Variables are declared outside the body of the main program, these type variables are called Global Variables.

Example: