What does this type defination mean?
C / C++ / MFC
3
Posts
2
Posters
0
Views
1
Watching
-
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, Kromozomdefines a new type, HashTableType, to be an array of length HASH_TABLE_SIZE of type ChainNode *
Pandoras Gift #44: Hope. The one that keeps you on suffering.
aber.. "Wie gesagt, der Scheiss is' Therapie"
boost your code || Fold With Us! || sighist | doxygen -
defines a new type, HashTableType, to be an array of length HASH_TABLE_SIZE of type ChainNode *
Pandoras Gift #44: Hope. The one that keeps you on suffering.
aber.. "Wie gesagt, der Scheiss is' Therapie"
boost your code || Fold With Us! || sighist | doxygen