Computer Science, asked by hemabindu, 9 months ago

what is instance,global and local variables

Answers

Answered by Anonymous
4

Answer:

Global variables are declared outside any function, and they can be accessed (used) on any function in the program. Local variables are declared inside a function, and can be used only inside that function. The scope of a variable refers to where is a variable visible or accesible.

Similar questions