What are data breakpoints?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
What are the types of assignment statements?
Write a code to determine the total number of stops an elevator would take to serve N number of people.
how do you execute a c program in unix.
Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?
What does 1f stand for?
char p="data"; printf(p);
what are the advantage of pointer variables? write a program to count the number of vowels and consonants in a given string
Illustrate it summing the series 2+4+6+......to n terms using (i) while loop (ii) do-while loop
print pattern 1 1 33 33 555 555 77777777 555 555 33 33 1 1
What was noalias and what ever happened to it?
Sir i need notes for structure,functions,pointers in c language can you help me please
When should you use a type cast?