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-23 12:18:24 PST Path: archiver1.google.com!news2.google.com!fu-berlin.de!fr.ip.ndsoftware.net!news.completel.fr!ircam.fr!freenix!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: Sun, 23 Nov 2003 20:16:43 +0000 Organization: Cuivre, Argent, Or Message-ID: References: <4948f537.0311220939.7e05afbf@posting.google.com> <4948f537.0311222312.43d843c5@posting.google.com> <4948f537.0311231003.3b36b880@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 1069618608 31781 80.67.180.195 (23 Nov 2003 20:16:48 GMT) X-Complaints-To: usenet@melchior.cuivre.fr.eu.org NNTP-Posting-Date: Sun, 23 Nov 2003 20:16:48 +0000 (UTC) To: comp.lang.ada@ada-france.org Return-Path: In-Reply-To: <4948f537.0311231003.3b36b880@posting.google.com> X-Mailer: Ximian Evolution 1.4.5 X-OriginalArrivalTime: 23 Nov 2003 20:16:34.0273 (UTC) FILETIME=[B0CFE510:01C3B1FE] 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:2879 Date: 2003-11-23T20:16:43+00:00 Shoko, try to write correct English and use conventional Ada style. It will improve your chances of getting an answer in this list. You need to convert String to your character array where the latter is expected: N := new Arr' (Arr (Input_Line)); But avoid using pointers. You can use declare blocks: declare A : Arr := Arr (Input_Line); begin ... end;