What is the main difference between the array and vector STL containers ?
array
vector
none, it is just an alias for a convenient list-like object
an array is multidimensionnal, while a vector has only one dimension
a vector is a variable-size list, while the array is a fixed size list
a vector contains integer type, while the array contains floating point numbers