Does anyone know what header file needs to be included to use the matrix class?
ex:
Im trying to use
matrix<int> x(2,3)

is this an STL class? is this included in VC++ 6 ?

its suppose to create a 2D int-array with 2 Rows and 3 Columns

I also have another question regarding the #include in VC++..

I noticed my usage of #include<vector> requires me to use the namespace std, why ?

what is the difference between #include<vector.h> and #include<vector>

ouch thats a lot of questions.
Hopefully there is a Jedi brave enough for this challenge

Thanks guys.