Any ideas why the final for loop is not displaying the values I'm trying to store at the respective locations? And as always any other feedback on how to improve is quite welcome.
You're saving all the data at the same (off the end of your array) location CaR[logs], overwriting the previous data each time, and then trying to read is sequentially from locations CaR[count].
Thank you for finding the mistake, I was so focused on the last loop I didn't catch that I usedCaR[logs]when I meant CaR[count] . I'm glad I found these forums. Thanks, again Moschops. Now I can laugh at myself and go on to exercise 8 at last.