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,d11e75ead27d62f5,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-11-01 08:18:14 PST Path: archiver1.google.com!postnews1.google.com!not-for-mail From: limor_ru@walla.co.il (lolo27) Newsgroups: comp.lang.ada Subject: how to declare an array of pointers Date: 1 Nov 2003 08:18:14 -0800 Organization: http://groups.google.com Message-ID: <92bfc3dd.0311010818.63932bf9@posting.google.com> NNTP-Posting-Host: 217.132.91.130 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 1067703494 819 127.0.0.1 (1 Nov 2003 16:18:14 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Sat, 1 Nov 2003 16:18:14 +0000 (UTC) Xref: archiver1.google.com comp.lang.ada:1904 Date: 2003-11-01T08:18:14-08:00 List-Id: i wrote the following code: type node is record emp_data:emp; next:p_node; prev:p_node; end record; type ptr_array is record next:p_node; end record; type Array_Hash_type is array (10..HASH_SIZE) of ptr_array; type Array_Hash_type_access is access Array_Hash_type; Hash_Array : Array_Hash_type_access; my question is: is Array_Hash_type an array of pointers if not then how can i define one i need an example thank