What are data breakpoints?

Answers were Sorted based on User's Feedback



What are data breakpoints?..

Answer / ravi joshi

Debuggers allow a user to halt a program and examine its
state. The debugger stops execution when some user-specified
condition is satisfied: Code breakpoints halt program
execution when a particular instruction is executed. Data
breakpoints halt program execution when a variable is
referenced. Code breakpoints are supported directly in
hardware on most machines and are fast. Data breakpoints,
however, are notoriously slow.

Is This Answer Correct ?    18 Yes 0 No

What are data breakpoints?..

Answer / siva jyothi katireddi

Data break point allow you to break execution when the
value stored at a specified memory location changes.

Is This Answer Correct ?    1 Yes 0 No

What are data breakpoints?..

Answer / matloob

data breakpoint is inter related to debugger.
it is all about the debugging techniques.
it make the program to stop and waits till its execution and if the error is observed the program stops its execution is blocked.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

main() { char *p; p="Hello"; printf("%c\n",*&*p); }

2 Answers   ME,


DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?

2 Answers   Wipro,


define switch statement?

6 Answers   CTS,


is c language is a object oreinted language?

5 Answers   TCS,


What is an lvalue in c?

0 Answers  






my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?

0 Answers  


Do character constants represent numerical values?

0 Answers  


how does the C compiler interpret the following two statements p=p+x; q=q+y; a.p=p+x; q=q+y b.p=p+xq=q+y c.p=p+xq; q=q+y d.p=p+x/q=q+y

4 Answers   TCS,


list the no of files created when c source file is compiled

9 Answers   TCS,


What is include directive in c?

0 Answers  


What has to put when we are inserting as assembly language code into the C code? or When we are inserting as assembly language code into the C code we have to insert one thing at the start and of the assembly language. What are they?

2 Answers  


Why array starts with index 0

2 Answers  


Categories