what is the difference b/w compiler and debugger?
Answers were Sorted based on User's Feedback
Answer / issamux
compiler =>
simple text -> program .exe
debugger =>
permit to load an exe and view the code machine and flag
CPU register statut and value
=> to see the execusion of a exe program
:)
| Is This Answer Correct ? | 17 Yes | 7 No |
Answer / saurabh tripathi
it is not a proper answer with example. define properly.
compiler =>
simple text -> program .exe
debugger =>
permit to load an exe and view the code machine and flag
CPU register statut and value
=> to see the execusion of a exe program
:)
| Is This Answer Correct ? | 5 Yes | 5 No |
Explain the difference between getch() and getche() in c?
regarding pointers concept
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
define switch statement?
Are there constructors in c?
Write a program that takes three variables(a,b,c) in as separate parameters and rotates the values stored so that value a goes to b,b,to c and c to a
Explain 'far' and 'near' pointers in c.
How can you increase the allowable number of simultaneously open files?
What is s or c?
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
what is stack , heap ,code segment,and data segment
What is typedf?