Answers for "array type has incomplete element type struct"

C
0

array type has incomplete element type struct

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

struct NUMBER array[99999];  // wrong form
// should be written in this form
NUMBER array[99999];  // right form
Posted by: Guest on September-01-2021

Code answers related to "array type has incomplete element type struct"

Code answers related to "C"

Browse Popular Code Answers by Language