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

write a own function to compare two strings with out using stringcomparition function?

6 Answers   LG Soft, Sasken,


What would be an example of a structure analogous to structure c?

0 Answers  


what does ‘segmentation violation’ mean?

1 Answers  


How can I find the modification date and time of a file?

0 Answers  


What are the advantages of using new operator as compared to the function malloc ()?

0 Answers   NIIT,






Why do we need functions in c?

0 Answers  


What is multidimensional arrays

0 Answers  


write an interactive program to generate the divisors of a given integer.

7 Answers   TCS,


1 1 12 21 123 321 12344231 how i creat it with for loop??

1 Answers  


what is the use of a array in c

6 Answers  


struct abc { unsigned int a; char b; float r; }; struct xyz { int u; struct abc tt; }ww; ww = (struct xyz*)malloc(sizeof(struct xyz)); will the memory be allocated for the inner structure also?

1 Answers   Wipro,


Why array starts with index 0

2 Answers  


Categories