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 |
find the output of the following program main() { int x=5, *p; p=&x; printf("%d",++*p); }
array of pointer pointer to array pointer to pointer
what is a non volatile key word in c language?
how to swap two nubers by using a function with pointers?
How will you allocate memory to double a pointer?
in a town the percentage of men is 52 the percentage of total literacy is 48 if total percentage of literate men is 35 of the total population write a program to find the total no of the literate men and women if the population of the town is 80000
What is the main differences between C and Embedded C?
What's a good way to check for "close enough" floating-point equality?
Which of the following about automatic variables within a function is correct ? a.its type must be declared before using the variable b.they are local c.they are not initialised to zero d.they are global.
how to compare two strings without using strcmp() function??
what is the difference between #include<> and #include”…”?
What are the string functions? List some string functions available in c.