LOCAL GLOBAL VARIBALES
Function Parameter:- parameter is a special type of variables Create inside a function separates ex. display(a)-> a is called parameters
two types of parameters
1. receivers - function definition
2. senders - function calling
## LOCAL & GLOBAL VARIBALES.
1. local - create inside a block - (){}[]
i. local cannot accesses out side the block
2. Global - THE Global are create outside a block
i. global variable is to access whole program
Comments
Post a Comment