Code:enum {HASH_TABLE_SIZE = 101}; typedef ChainNode * HashTableType[HASH_TABLE_SIZE];
I could not get the point, can someone explain what 2nd line of the code does to me?
Best wishes
This is a discussion on What does this mean? within the C++ Programming forums, part of the General Programming Boards category; Code: enum {HASH_TABLE_SIZE = 101}; typedef ChainNode * HashTableType[HASH_TABLE_SIZE]; I could not get the point, can someone explain what 2nd ...
Code:enum {HASH_TABLE_SIZE = 101}; typedef ChainNode * HashTableType[HASH_TABLE_SIZE];
I could not get the point, can someone explain what 2nd line of the code does to me?
Best wishes
Sarp Arda Coskun
www.bilgiciftligi.com
It creates a type HashTableType defined as an array of 101 pointers to type ChainNode.
I used to be an adventurer like you... then I took an arrow to the knee.
Thanks buddy.
Sarp Arda Coskun
www.bilgiciftligi.com