vote up 0 vote down star

I am running a C program in NetBeans (cygwin on windows). Generally for all C programs I have run in the past, while debugging, it stops and shows the line number of segmentation fault. But for this particular program, it does not show the line number and just stops and in the output tab, it shows prog stopped by SIGSEGV. I have tried conditional breakpoint, but it is not stopping. What could be the other conditions for error?

If u want have a look at my program, here it is.http://codepad.org/cujYTIeg

and the in.txt file from where it reads the input. http://codepad.org/vNySA6uh

flag

70% accept rate

1 Answer

vote up 0 vote down

Did you run the program in debug mode with debugging information enabled?

Try to set a normal breakpoint in your Appliocation. Does it stop there?

link|flag
Ya it is running in debugging mode. No it does not stop there after a normal breakpoint. I think the problem is since my functions are making recursive calls, so may be stack is overflowing. I m not sure. – lex Oct 11 at 13:03
it also may be that your debug info files are corrupted. you could try delete all temporary/intermediate files from your project and do a complete rebuild. – codymanix Oct 11 at 23:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.