From: "Mark Figura" Newsgroups: comp.os.msdos.djgpp Subject: Re: HELP!!!URGENT!! Date: Sat, 12 Sep 1998 16:39:43 -0400 Organization: "SNET dial access service" Lines: 40 Message-ID: <6tem5q$d0b@news1.snet.net> References: <6teh3g$a10$1 AT evia DOT ccf DOT auth DOT gr> NNTP-Posting-Host: sttn-sh4-port154.snet.net To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk >Exiting due to signal SIGFPE >Floating Point exception at eip=0000193c > SNIP'd register contents >Call frame traceback EIPs: > 0x0000193c > 0x00001cb6 > 0x000016d7 > 0x00002e62 > > >Does anyone know what this means??? > >Thank you, >Vlasis Hatzistavrou. Hi This could mean many things. Probably, it means that you're dividing by zero somewhere. If you're using rhIDE, then click on the line numbers below "call frame traceback" in the window where it says that it's compiling/linking/running/etc. That'll bring you to the line that's giving you the error. Unfortunatly, it doens't tell you what the error is though. It's even possible that the error is not on this line. It's possible that there's an error on a previous line, but this line is just crashing the program (because of the error on the previous line). If you're not using rhIDE, there's a program that'll tell you what line those EIP's point to, but I can't remember what it's called... Anyone know the name of that program? Good luck! Mark