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 is "Hungarian Notation"?
What is the difference between struct and typedef struct in c?
what is the format specifier for printing a pointer value?
What is difference between arrays and pointers?
What is a MAC Address?
Explain the difference between malloc() and calloc() function?
Given an array of length N containing integers between 1 and N, determine if it contains any duplicates.
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
why do some people write if(0 == x) instead of if(x == 0)?
write a program in 'c' to find the value of p[i+1]^n.p,i,n are arguments of a macro and n is a integer
Explain the use of 'auto' keyword
Explain what are the advantages and disadvantages of a heap?