This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

No source available for "0x1cfe"

while debugging , my program doesn't stop at main . After suspending it,i get an error "No source available for "0x1cfe" . How to rectify this kind of problem and what exactly does this error indicates

  • Hello,
    The "error" is not really an error. It is a message from the debugger telling you that the target is halted at a program address where there is no source association. Whether that address is a valid address or not depends on the program. If you are expecting to get to main, have a breakpoint set there, and never reach it, it could be that there is some issue with either your target or you program (or maybe both) and your program went "into the weeds" so they say .

    ki