Author Topic: Error APPCRASH  (Read 4167 times)

brunoxpto

  • Guest
Error APPCRASH
« on: March 22, 2015, 04:06:58 am »
I keep receiving this error when I run the code, someone know how to fix this ?






Nome do Evento de Problema:   APPCRASH
  Nome do Aplicativo:   icc3.exe
  Versão do Aplicativo:   0.0.0.0
  Carimbo de Data/Hora do Aplicativo:   550e312f
  Nome do Módulo de Falhas:   msvcrt.dll
  Versão do Módulo de Falhas:   7.0.7601.17744
  Carimbo de Data/Hora do Módulo de Falhas:   4eeaf722
  Código de Exceção:   c0000005
  Deslocamento de Exceção:   00021933
  Versão do sistema operacional:   6.1.7601.2.1.0.256.1
  Identificação da Localidade:   1046
  Informações Adicionais 1:   0a9e
  Informações Adicionais 2:   0a9e372d3b4ad19135b953a78882e789
  Informações Adicionais 3:   0a9e
  Informações Adicionais 4:   0a9e372d3b4ad19135b953a78882e789


Offline raynebc

  • Almost regular
  • **
  • Posts: 217
Re: Error APPCRASH
« Reply #1 on: March 22, 2015, 04:51:14 am »
Your program has a bug and it is crashing.  Usually this is the part where folks point out that this forum isn't meant for help with programming itself, but my recommendation is to enable debugging symbols for your project (Project>Build options) or for all projects (Settings>Compiler).  Then do a full Rebuild (Build>Rebuild) of your project and run your program through the debugger (Debug>Start).  When the program crashes, Codeblocks will display the line in your code where the crash occurred and you can troubleshoot from there (ie. add watches to see the values of different variables).  You can also set breakpoints so that execution of your program stops at specific places, optionally only when certain statements are true.  You can also trace through the program line by line if you want.  The debugger is an immensely helpful tool and I use it all the time, all programmers should, because it's unavoidable that humans write flawed code.