hi, A hash table by specification is not a sequential storage structure like an array. It is an associative storage structure. The key value pairs need not be stored in the sequence one inserts them in. In order for them to be sequentially arranged. Either the key or the value must be a continuously increasing (constantly increasing) function, upon which the hash table can be sorted. Once the sorting is done you will notice the desired sequencing.
-- -Suman On Feb 7, 2008 9:29 AM, prasadarao2846 <[EMAIL PROTECTED]> wrote: > Hello friends,good morning. > > I create a hash table and enter the values. > At the time of the printing it doesnot follow the order. > why the reason. > > Thank you friends.

