C++ Debug Error
-
Hi Everyone I am trying to compile my assignment but I am having some problem with compiling I believe that something about line 24-27 This is the error message --------------------------- Microsoft Visual C++ Runtime Library --------------------------- Debug Error! Program: ...2015\Projects\OCC\IC20_AdamsLotApp\Debug\IC20_AdamsLotApp.exe abort() has been called (Press Retry to debug the application) --------------------------- Abort Retry Ignore ---------------------------
-
Hi Everyone I am trying to compile my assignment but I am having some problem with compiling I believe that something about line 24-27 This is the error message --------------------------- Microsoft Visual C++ Runtime Library --------------------------- Debug Error! Program: ...2015\Projects\OCC\IC20_AdamsLotApp\Debug\IC20_AdamsLotApp.exe abort() has been called (Press Retry to debug the application) --------------------------- Abort Retry Ignore ---------------------------
-
You need to use the debugger to gather more information, especially about the content of the variables that may cause the error. Also please mark the lines where the error occurs.
Please check out the image below http://i.imgur.com/NeaItgZ.jpg
-
Please check out the image below http://i.imgur.com/NeaItgZ.jpg
-
I couldn't find it :/
-
I couldn't find it :/
-
I couldn't understand what do you mean ?
-
If you really want help with this issue then please do what I suggested in my first response.
I have attached the image please check out and let me know what you need
-
I have attached the image please check out and let me know what you need
I mean you need to run your program under the debugger to trap exactly where the error occurs, what the error is, and what variables, pointers etc. are possibly causing the fault. Without that information it is impossible to guess what may be going wrong.
-
I mean you need to run your program under the debugger to trap exactly where the error occurs, what the error is, and what variables, pointers etc. are possibly causing the fault. Without that information it is impossible to guess what may be going wrong.
http://i.imgur.com/mkoBXWc.jpg please check out the image
-
http://i.imgur.com/mkoBXWc.jpg please check out the image
-
http://i.imgur.com/vO4uFTL.jpg Look at this error message DO I have any mistake by using enum ? i guess ?
-
Don't you have and compiler ? Why don't you just compile and debug the code ?
-
Don't you have and compiler ? Why don't you just compile and debug the code ?
-
Member 12035138 wrote:
Why don't you just compile and debug the code ?
Why don't you? Seriously, this site is here to help when you have problems, but it is up to you to gather the correct information. We cannot do everyone's work for them.
I shared the code and error message what else you need ? If you cant help just tell type here it's not big deal
-
Hi Everyone I am trying to compile my assignment but I am having some problem with compiling I believe that something about line 24-27 This is the error message --------------------------- Microsoft Visual C++ Runtime Library --------------------------- Debug Error! Program: ...2015\Projects\OCC\IC20_AdamsLotApp\Debug\IC20_AdamsLotApp.exe abort() has been called (Press Retry to debug the application) --------------------------- Abort Retry Ignore ---------------------------
The error is probably here:
uniform_int_distribution < int > passNumberDist(1000000, 99999);
The first distribution parameter should be less than the second.
-
I shared the code and error message what else you need ? If you cant help just tell type here it's not big deal
-
The error is probably here:
uniform_int_distribution < int > passNumberDist(1000000, 99999);
The first distribution parameter should be less than the second.
Thank you I solved the compiler error !