hey,
i want to make a program that lets say represents a matrix now the matrix will be represented by a vector that each object in the vector will represent a cell example: vector now when constructing the matrix the constructor recives a list of cells to insert in the matrix. the size of the list is unknown in compilation time
i am interested in creating this matrix without using memory on the heap. in other words not creating object using the word "new" or "delete" is there any way to do that if i dont know how many objects are meant to be inserted into the vector?
thanx in advance kevin