How do you access an array or variable declared or initialized in a nested loop from outside of the loop?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You cannot. You must declare the array outside the loop. This may seem strange at first but what if the condition for the loop to run even once is never met? How could you possibly then access an array which was never even created?