
- Forum
- Programming Talk
- C and C++
- Why is this error Occurring
Why is this error Occurring
This is a discussion on Why is this error Occurring within the C and C++ forums, part of the Programming Talk category; Most of us who run programs in C and C++ would have definitely seen the word core dump at least ...
-
Why is this error Occurring
Most of us who run programs in C and C++ would have definitely seen the word core dump at least few times. I am beginning my programming in C and I saw this core dump message quite a few times. What is actually this core dump refers to and what must be done to resolve this error?
-
Core dump occurs when a user or a programmer tires to access illegal area of memory or memory that is not allowed to be accessed. When such a memory area is accessed and when it is outputted by programmer in their program then core dump occurs. For resolving this you have to access the core dump outputted and then based on the message given in these core dump actions has to be taken for resolving. As each message would be different and each resolution handling for the same would be different.
-
02-28-2012, 06:16 AM #3
- Join Date
- Feb 2012
- Answers
- 66
A core dump consists of the recorded state of the working memory of a computer program at a specific time, generally when the program has terminated abnormally.Core dumps can serve as useful debugging aids in several situations.They are often used to assist in diagnosing and debugging errors in computer programs.We should access the core outputted and then the respected action should be performed to resolve the core dump error.
-
Sponsored Ads

Reply With Quote





