1
2Global variables:
3These variables are the variables which
4can be accessed throughout the program.
5Global variables cannot be created
6whenever that function is called.
7
8Local variables:
9These variables can be used or exist
10only inside the function. These variables
11are not used or referred by any other function.
12