Le type de tableau a une structure de type d'élément incomplet

struct NUMBER
    {       
        int   num ;
    };
typedef struct NUMBER ;

struct NUMBER array[99999];  // wrong form
// should be written in this form
NUMBER array[99999];  // right form
Glorious Gnu