Variable Sized Arrays

  • + 1 comment

    Can anyone explain line 3 ?

    vector< vector > a(n)

    • + 1 comment

      He is declaring a matrix of vector (in this case, vector filled with vectors), a is the var name and (n) is a resize of the "parent" vectors, which is, the one who contains other vectors.

      • + 1 comment

        which languague is it?

        • + 0 comments

          C++ it is..