I have array listetud, the size of this array is 10, i want to extend the size of the array every time it becomes full
class Ecole{
string listetud[10];
int taillelistetud;
public:
void extendlistetud(int taillelistetud){
listetud[10+taillelistetud];//is this correct?
}