InterviewSolution
Saved Bookmarks
| 1. |
What is watchpoint & breakpoint in c/c++...? |
|
Answer» A WATCHPOINT is a special BREAKPOINT that STOPS the execution of an APPLICATION whenever the VALUE of a given expression changes, without specifying where it might occur. Unlike breakpoints (which are line-specific), watchpoints are associated with files. |
|