Array Delphi

[Solved] Array Delphi | Haskell - Code Explorer | yomemimo.com
Question : delphi array

Answered by : brainy-badger-1gc6ntltk82n

const Days : array[1..7] of string = ('Mon','Tue','Wed','Thu','Fri','Sat','Sun'); var i : Integer; begin for i := 1 to 5 do // Show the weekdays ShowMessageFmt('Day %d = %s',[i,Days[i]]); end;

Source : http://www.delphibasics.co.uk/Article.asp?Name=Arrays | Last Update : Fri, 17 Jul 20

Answers related to array delphi

Code Explorer Popular Question For Haskell