Categories
std::vector Pascal?
What is the analogue of std::vector in Pascal. How would such a string look like in Pascal: vector [Name] NameName; ? [] because here <> for some reason it is impossible to insert
Answer the question
In order to leave comments, you need to log in
array of Name array[10] of Name In modern Delphi: TArray<Name>
TArray<Name>
In PascalABC.NET, this is List < integer > : var a := new List < integer > ; a.Add(2); a.Add(3);
Didn't find what you were looking for?
Ask a Question
731 491 924 answers to any question