Answer Posted / 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 |
Post New Answer View All Answers
What is the purpose of void pointer?
What is mean by data types in c?
What is a volatile keyword in c?
What is graph in c?
What is the difference between c and python?
The file stdio.h, what does it contain?
Write a C program linear.c that creates a sequence of
processes with a given length. By
sequence it is meant that each created process has exactly
one child.
Let's look at some example outputs for the program.
Here the entire process sequence consists of process 18181:
Sara@dell:~/OSSS$ ./linear 1
Creating process sequence of length 1.
18181 begins the sequence.
An example for a sequence of length three:
Sara@dell:~/OSSS$ ./linear 3
Creating process sequence of length 3.
18233 begins the sequence.
18234 is child of 18233
18235 is child of 18234
........ this is coad .... BUt i could not compleate it .....:(
#include
Write a program to swap two numbers without using the third variable?
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
Is anything faster than c?
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
What are the difference between a free-standing and a hosted environment?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
What does the function toupper() do?
Is it possible to pass an entire structure to functions?