I am working with a program that crashes, but only with the release build.
If I use the Local Windows Debugger with the release build, I manage to get a message like this one :
Unhandled exception at 0x0001305FA3B0 in program.exe: 0xC0000094: Integer division by zero.
Is there a way to find what is the instruction at the memory location 0x0001305FA3B0 and more importantly what source file is it located in ?
I also wonder why an integer division by zero would not crash in debug build (if you have an explaination for this one).