(EDITED - for better reading)
Well this is embarassing! i am learning c++ as i am learning juce so i am quite afraid to use different syntax other then
juce kind of syntax because i don't know how it will reflect on other platforms. Anyway.
for that reason i created a :
StringArray array1[7][4]; // (between how to startup a StringArray on his creation?)
then added some values with:
array1.add() // because i couldn't give data like this: array1[0][0]="1";
(between is it possible?)
now i want to do use 2 for loops and std::cout the values:
for (int i=0; i<7; i++) // i would like to have the array.size()in the second argument but i don't know how { for (int j=0; j<4; j++) // i would like to have the array[i].size() in the second argument but i don't know how { std::cout << array1[i][j]; } }
Am i thinking ok? if so can you gimme some hints how to achiece this? Any help welcome
thank you
dee