From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,7d8ad14b2bbc7921,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-11-22 09:39:04 PST Path: archiver1.google.com!postnews1.google.com!not-for-mail From: shoko2004@hotmail.com (shoko) Newsgroups: comp.lang.ada Subject: unconstrained array question Date: 22 Nov 2003 09:39:03 -0800 Organization: http://groups.google.com Message-ID: <4948f537.0311220939.7e05afbf@posting.google.com> NNTP-Posting-Host: 217.132.90.163 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 1069522744 10608 127.0.0.1 (22 Nov 2003 17:39:04 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Sat, 22 Nov 2003 17:39:04 +0000 (UTC) Xref: archiver1.google.com comp.lang.ada:2854 Date: 2003-11-22T09:39:03-08:00 List-Id: hi I have few question to ask: 1.i have a Character array can i print the all array wich is a string at once or do i have to pront each item? 2.i have unconstrained array of Character i want to insert a string when the program runs with the function get for example how can i do it the compiler telling me i need to define the array first: ------------------------------------------------------ type Arr is Array(integer range<>) of Character ; type n_array_Ptr is access Arr; n:n_array_Ptr ; s:string(1..100); begin n:= new Arr'(Get(s)); -----------------------------------------