// to make (n rows x m columns) 2D array, all initialized // with value 'k' (typeof(k) = T) vector<vector<T>> vec( n , vector<T> (m, k));