Questions tagged [parallel-arrays]

Questions regarding the utilization of individual arrays for each field (such as `name[10], subject[10], grade[10]`) instead of an array of objects with fields/properties to hold organized records.

Obtaining a string value from a parallel array

Apologies for the very basic question, but I'm struggling with this. I have a word. Each letter of the word corresponds to a position in one array, and then returns the character at the same position from a parallel array (basic cipher). Here is my curren ...