everest% CC hmain.C hash.C list6.C studentitem.C -lm
hmain.C:
hash.C:
list6.C:
studentitem.C:
everest% 

everest% a.out
Make new HashTable


***************Begin Dump***************
HashTable: Tsize = 101, count = 5

Hash Table entries at index = 18, count = 1
<Isaac Asimov (874310457), CHEM major
>

Hash Table entries at index = 44, count = 1
<John Smith (001234567), CMSC major
>

Hash Table entries at index = 46, count = 1
<Jane Doe (024681012), CMSC major
>

Hash Table entries at index = 47, count = 1
<Joe Blow (135791113), CMSC major
>

Hash Table entries at index = 53, count = 1
<James Cameron (314316598), FILM major
>
****************End Dump****************



Testing the Find function

Found: John Smith (001234567), CMSC major

Not found!


***************Begin Dump***************
HashTable: Tsize = 101, count = 4

Hash Table entries at index = 18, count = 1
<Isaac Asimov (874310457), CHEM major
>

Hash Table entries at index = 46, count = 1
<Jane Doe (024681012), CMSC major
>

Hash Table entries at index = 47, count = 1
<Joe Blow (135791113), CMSC major
>

Hash Table entries at index = 53, count = 1
<James Cameron (314316598), FILM major
>
****************End Dump****************


everest% 
