All variables declared in function definition called
Answers
Answered by
0
✔✅The variable age was declared within the function func() so it is local to thatfunction and not visible to portion of program outside this function. As the name suggests, Global Variables can be accessed from any part of the program. ... They are declared at the top of the program outside all of the functions or blocks.
Answered by
0
The variable age was declared within the function func() so it is local to that functionand not visible to portion of program outside this function. As the name suggests, GlobalVariables can be accessed from any part of the program
Similar questions