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=-2.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM, MAILING_LIST_MULTI autolearn=unavailable autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,7d8ad14b2bbc7921 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-11-22 10:12:47 PST Path: archiver1.google.com!news2.google.com!news.maxwell.syr.edu!newsfeed.icl.net!newsfeed.fjserv.net!proxad.net!usenet-fr.net!enst.fr!melchior!cuivre.fr.eu.org!melchior.frmug.org!not-for-mail From: Marius Amado Alves Newsgroups: comp.lang.ada Subject: Re: unconstrained array question Date: Sat, 22 Nov 2003 18:11:19 +0000 Organization: Cuivre, Argent, Or Message-ID: References: <4948f537.0311220939.7e05afbf@posting.google.com> NNTP-Posting-Host: lovelace.ada-france.org Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Trace: melchior.cuivre.fr.eu.org 1069524684 24339 80.67.180.195 (22 Nov 2003 18:11:24 GMT) X-Complaints-To: usenet@melchior.cuivre.fr.eu.org NNTP-Posting-Date: Sat, 22 Nov 2003 18:11:24 +0000 (UTC) To: comp.lang.ada@ada-france.org Return-Path: In-Reply-To: <4948f537.0311220939.7e05afbf@posting.google.com> X-Mailer: Ximian Evolution 1.4.5 X-OriginalArrivalTime: 22 Nov 2003 18:11:12.0611 (UTC) FILETIME=[03239B30:01C3B124] X-Virus-Scanned: by amavisd-new-20030616-p5 (Debian) at ada-france.org X-BeenThere: comp.lang.ada@ada-france.org X-Mailman-Version: 2.1.3 Precedence: list List-Id: Gateway to the comp.lang.ada Usenet newsgroup List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Xref: archiver1.google.com comp.lang.ada:2858 Date: 2003-11-22T18:11:19+00:00 On Sat, 2003-11-22 at 17:39, shoko wrote: > 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? You can convert to String (because String is defined exactly as an array of Character), and then use operations of String e.g. Ada.Text_IO.Put (String (Your_Array_Of_Character)); > 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:... Please rewrite this is correct English and I might be able to understand it and help you.