InterviewSolution
Saved Bookmarks
| 1. |
What are local variables? |
|
Answer» A local variable is a kind of variable that is EFFECTIVE only WITHIN the FUNCTION it is defined. When the function has finished its COURSE of execution, the local variables no LONGER exist. |
|