struct Mystruct
{
double member
double myaccount[12345]
};
int main(){
Mystruct st[10];
for (int i = 0; i < 10; i++){
for (int j = 0; j < 12345; j++){
someFunction(st[i].myaccount[j]);
}
}
//Rest of main
Will run someFunction on every address of myaccount for every struct in the Mystruct arrary. Accessing variables would be the same: