home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!spool.mu.edu!agate!doc.ic.ac.uk!mrccrc!warwick!cstaddc
- From: cstaddc@csv.warwick.ac.uk (Mr M A Stuart)
- Newsgroups: comp.lang.pascal
- Subject: ????? passing an array to a procedure ??????
- Date: 24 Nov 1992 03:26:12 -0000
- Organization: Computing Services, University of Warwick, UK
- Lines: 38
- Distribution: world
- Message-ID: <1es7ckINN52g@sage.csv.warwick.ac.uk>
- NNTP-Posting-Host: sage.csv.warwick.ac.uk
-
-
-
-
- I want to change the contents of a globally defined array within
- a procedure.
-
- i.e.
-
-
- program .....
-
- var store: array[1..10] of integer;
-
- procedure processing
- begin
- store[4] := ......
- ...
- ...
-
- end;
-
-
-
-
- begin
-
- processing
-
- end.
-
-
-
- n.b.
- I am note using turbo pascal just an ansi-standard compiler.
-
-
- Any suggestions !!!
-
-