Matriz em Delphi - Urgente

Delphi

21/02/2003

Gostaria de saber como declarar uma Matriz em Delphi.

Obrigado.


Manjuneiro

Manjuneiro

Curtidas 0

Respostas

Nildo

Nildo

21/02/2003

var
matriz: array[0..100] of string;

ou entao

var
matriz: array of string;
begin
setLength(matriz,100);


GOSTEI 0
POSTAR