View previous topic :: View next topic |
Author |
Message |
star2066
Joined: 27 Jan 2015 Posts: 19
|
Posted: Wed Feb 25, 2015 7:14 pm Post subject: Unknow Problem |
|
|
[img]https://fbcdn-sphotos-a-a.akamaihd.net/hphotos-ak-xfp1/v/t1.0-9/11001814_638960049563637_6646211210121526787_n.jpg?oh=7edcaa3e6b8625e41b793152307c7d76&oe=557D38B6&__gda__=1434111551_ce93fc84633a03c06f46fc5da3f577fc[/img]
I got this message when I run my code. Who knows what's wrong here?
Thx |
|
Back to top |
|
 |
DanRRight
Joined: 10 Mar 2008 Posts: 2923 Location: South Pole, Antarctica
|
Posted: Wed Feb 25, 2015 7:54 pm Post subject: |
|
|
To see more details compile the code with /undef /check and run the exe through debugger
C:>sdbg filename.exe |
|
Back to top |
|
 |
JohnCampbell
Joined: 16 Feb 2006 Posts: 2615 Location: Sydney
|
Posted: Thu Mar 05, 2015 12:18 am Post subject: |
|
|
I have seen this error message quite a bit lately.
Mine have been due to dividing by zero or an undefined variable, presumably being used at line 68.
Either review the values in SDBG, or put code in to report or check if any variable being referenced is invalid.
It would be good to know which variable is at fault, but at least you appear to have the line number.
Did you compile with debug on ? (you have the line number) If so then you can use sdbg to run the program and check at this line. Hopefully this will not change the error.
John |
|
Back to top |
|
 |
|