Now i have an array, P[8]={0,1,1,2,0,3,1,0}
And i want to add 4 separate values to each element in the array,so if i was to lookup P[2] i can access its 4 values.
I tried doing it by giving those standard values an array of itself and making each value get it through a loop but a fundamental problem occurs when assinging P[6] to those 4 values cause it kind of makes the array size 6,anyway i think i've got some concept confused.Is it possible ? How do i circumvent it ?