Path: utzoo!utgpu!news-server.csri.toronto.edu!bonnie.concordia.ca!uunet!mcsun!unido!rwthinf!cip-s08!wolfram From: wolfram@cip-s08.informatik.rwth-aachen.de (Wolfram Roesler) Newsgroups: comp.lang.c Subject: Re: help(segment overflowed) Message-ID: Date: 19 Jun 91 11:18:33 GMT References: <91165.213741NYK100@psuvm.psu.edu> Sender: news@rwthinf.UUCP Lines: 14 NYK100@psuvm.psu.edu writes: >linker error:segment overflowed maximum size:_BSS check the compiler and linker options to increase the size of the BSS segment. But probably you have something like `static long[999999]' in your program. This array would be put in the BSS segment, thus making it 999999* sizeof(long) bytes longer. Try dynamic allocation. >BGI error:graphics not initialized (use 'initgraph') Do what it says, call the initgraph function. See the BGI docu for details. CU \/\/olfram