Local and Global variables in C - Local and Global variables
Learn C - C tutorial - Local and Global variables in c - C examples - C programs
Local and Global variables in C
- GLOBAL VARIABLE
- A variable that is declared outside all functions, is said to be the global variable.
- A global variable might be used in all functions.
- LOCAL VARIABLE
- A variable which is declared within the function, they were local variables.