Multidimensional Array

  1. See: Float_t does not name a type
  2. Maybe Philippe knows a better way … I just know a brutal fix …
    replace:
    Float_t A[][8][7][12][9]
    with:
    Float_t *A
    and:
    A[0][0][0][0][0]
    with:
    A[0]
    and:
    A[a][b][c][d][e]
    with:
    A[(((((( a * 8 ) + b ) * 7 ) + c ) * 12 + d ) * 9 + e )]
    and:
    max(sen,m,n,o,p,q);
    with:
    max(&sen[0][0][0][0][0], m, n, o, p, q);