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 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,b42bac0cff75cc12 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-11-14 10:43:01 PST Path: archiver1.google.com!news1.google.com!sn-xit-02!sn-post-01!supernews.com!corp.supernews.com!not-for-mail From: "Matthew Heaney" Newsgroups: comp.lang.ada Subject: Re: pointers in Ada Date: Wed, 14 Nov 2001 13:46:29 -0500 Organization: Posted via Supernews, http://www.supernews.com Message-ID: References: X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.50.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 X-Complaints-To: newsabuse@supernews.com Xref: archiver1.google.com comp.lang.ada:16526 Date: 2001-11-14T13:46:29-05:00 List-Id: "lalasa ala" wrote in message news:mailman.1005761912.32128.comp.lang.ada@ada.eu.org... > 1) How are pointers represented in Ada (Ex: if T is a pointer of some > kind R , how is it represented in Ada). type T is access all R; > 2) How are exceptions handled in Ada. With an exception handler: begin ; exception when Constraint_Error => end;