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

What is .obj file in c?

0 Answers  


what will be the output of this program? #include<stdio.h> #define cube(x) x*x*x void main() { int i,j=5; i=cube(j+3); printf("i=%d",i); }

6 Answers   IBM,


What are the advantage of c language?

0 Answers  


What is external and internal variables What is dynamic memory allocation what is storage classes in C

3 Answers  


List out few of the applications that make use of Multilinked Structures?

1 Answers   Accenture,






Which is the memory area not included in C program? give the reason

0 Answers   IBM, TCS,


When c language was developed?

0 Answers  


Write a programme to find even numbers without using any conditional statement?

3 Answers   ADD Software, Infosys,


what is the program to display your name in any color?

2 Answers   HCL,


In which area global, external variables are stored?

3 Answers  


how to print 212 as Twohundreds twelve plz provide me ans soon

1 Answers  


define switch statement?

6 Answers   CTS,


Categories