comp.lang.ada
 help / color / mirror / Atom feed
From: limor_ru@walla.co.il (lolo27)
Subject: how  to declare an array of pointers
Date: 1 Nov 2003 08:18:14 -0800
Date: 2003-11-01T08:18:14-08:00	[thread overview]
Message-ID: <92bfc3dd.0311010818.63932bf9@posting.google.com> (raw)

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



             reply	other threads:[~2003-11-01 16:18 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-11-01 16:18 lolo27 [this message]
2003-11-01 18:10 ` how to declare an array of pointers tmoran
2003-11-01 22:44   ` lolo27
2003-11-01 23:30     ` Jeffrey Carter
2003-11-02  0:04       ` tmoran
replies disabled

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox