#include <stdio.h>
typedef struct
{
int num ;
} NUMBER ;
int main(void)
{
struct NUMBER array[99999];
return 0;
}
I'm getting a compile error:
error: array type has incomplete element type
I believe the problem is that I'm declaring the array of struct incorrectly. It seems like that's how you declare it when I looked it up.