Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
General
»
[SOLVED] How to set initial values for a 2D Array of Integer?
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
IRC channel
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
Insert variant array to e...
by
jamie
[
Today
at 01:28:28 am]
Providing *.deb files for...
by
Bi0T1N
[
Today
at 01:18:36 am]
Can't load because <x> de...
by
marcov
[
Today
at 12:56:43 am]
Are We Dead Yet?
by
Joanna
[May 27, 2023, 11:32:52 pm]
ZenGL +android + MacOS Co...
by
Akira1364
[May 27, 2023, 10:38:19 pm]
Load local HTML file into...
by
maurobio
[May 27, 2023, 08:10:08 pm]
Non-local goto example ne...
by
Peter H
[May 27, 2023, 08:05:34 pm]
[SOLVED] Using high inste...
by
lagprogramming
[May 27, 2023, 07:50:48 pm]
LAMW - default manifest r...
by
jmpessoa
[May 27, 2023, 07:25:21 pm]
Threads - stringlist and ...
by
PascalDragon
[May 27, 2023, 06:37:57 pm]
Improvements in rtl/objpa...
by
PascalDragon
[May 27, 2023, 06:35:26 pm]
Optimization of for loops...
by
lagprogramming
[May 27, 2023, 03:56:09 pm]
How to download a file fr...
by
maurobio
[May 27, 2023, 02:58:43 pm]
Solved- TSQLQuery.ExecSQL...
by
br4d
[May 27, 2023, 02:26:56 pm]
New version of BGRABitmap
by
circular
[May 27, 2023, 01:59:44 pm]
[Solved] Help with spellc...
by
Espectr0
[May 27, 2023, 12:04:11 pm]
first generic attempt
by
Martin_fr
[May 27, 2023, 11:47:41 am]
Hole punching - Step by S...
by
Key-Real
[May 27, 2023, 10:28:34 am]
[SOLVED] How to get recei...
by
cdbc
[May 27, 2023, 10:04:41 am]
Online Package Manager
by
circular
[May 27, 2023, 08:43:06 am]
Reading MAC address of Ac...
by
Jurassic Pork
[May 27, 2023, 07:56:41 am]
LAMW - How to build kitka...
by
jmpessoa
[May 27, 2023, 12:39:35 am]
Cut files to Clipboard (i...
by
jamie
[May 26, 2023, 11:13:16 pm]
Is Meta programming possi...
by
PascalDragon
[May 26, 2023, 10:14:46 pm]
[TLineSeries] Slow Prepar...
by
wp
[May 26, 2023, 08:14:52 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [SOLVED] How to set initial values for a 2D Array of Integer? (Read 146 times)
AMJF
New Member
Posts: 48
[SOLVED] How to set initial values for a 2D Array of Integer?
«
on:
March 31, 2023, 05:29:59 pm »
I can do it easily for a 1D array, like so:
Code: Pascal
[Select]
[+]
[-]
TEMP
:
Array
[
1
..
3
]
of
Integer
=
(
0
,
0
,
0
)
;
But I have no idea how to implement it for a 2D array like:
Code: Pascal
[Select]
[+]
[-]
TEMP
:
Array
[
1
..
2
,
1
..
3
]
of
Integer
=
(
0
,
0
)
(
0
,
0
)
(
0
,
0
)
;
which didn't work at all.
Help, plz?
«
Last Edit: March 31, 2023, 05:41:29 pm by AMJF
»
Logged
wp
Hero Member
Posts: 10847
Re: How to set initial values for a 2D Array of Integer?
«
Reply #1 on:
March 31, 2023, 05:35:09 pm »
Code: Pascal
[Select]
[+]
[-]
var
TEMP
:
Array
[
1
..
2
,
1
..
3
]
of
Integer
=
(
(
0
,
0
,
0
)
,
(
0
,
0
,
0
)
)
;
Logged
AMJF
New Member
Posts: 48
Re: [SOLVED] How to set initial values for a 2D Array of Integer?
«
Reply #2 on:
March 31, 2023, 05:41:59 pm »
Thanks!
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
General
»
[SOLVED] How to set initial values for a 2D Array of Integer?
TinyPortal
© 2005-2018