scope of a for loop
what is the scope of i in
does it only exist within the for loop? if i want i to be used outside, i need this right?
this would break?
for (int i = 0; i < Length; i++) { }?does it only exist within the for loop? if i want i to be used outside, i need this right?
this would break?