Array Question

closed account (N1Co216C)
Hey guys. Can anyone tell me what this line of code does? Does it copy the value from the variable temp into position 8 of numAr, or is it the other way around? Or does it do something else?

 
   temp = array[15]
Last edited on
It's the other way around. The thing on the left is what changes. The thing on the right is never affected.
closed account (N1Co216C)
Got it. Thanks!
Topic archived. No new replies allowed.