comp.lang.ada
 help / color / mirror / Atom feed
* how  to declare an array of pointers
@ 2003-11-01 16:18 lolo27
  2003-11-01 18:10 ` tmoran
  0 siblings, 1 reply; 5+ messages in thread
From: lolo27 @ 2003-11-01 16:18 UTC (permalink / 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



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2003-11-02  0:04 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-11-01 16:18 how to declare an array of pointers lolo27
2003-11-01 18:10 ` tmoran
2003-11-01 22:44   ` lolo27
2003-11-01 23:30     ` Jeffrey Carter
2003-11-02  0:04       ` tmoran

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