Coder's Guild Mailing List

structure array size

Posted by casedeis@xxxxxx.xxx (Case Deis) on 1999-04-23

In my program, I have created the following structure:

struct Record {
char PartNumber[15];
char Part[30];
char HP[7];
char EngineType[30];
};

I also have the following object declaration:
Record FileArray[ ]

If I put a number like, say 50 in FileArray, the program compiles, but I =
get a fatal exception error.  How can I make a  structure Array of =
extremely high numbers without getting an error?

Thanks again for your help

Shrapnel