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 |
What are the key features of C?
What does sizeof int return?
What is the memory allocated by the following definition ? int (*x)[10];
What is const volatile variable in c?
What are categories used for in c?
How do you determine a file’s attributes?
write a program to reverse the words in the sentence.NOTE:not reverse the entire string but just the occurance of each word
Which of the following is not a valid declaration for main ()? 1) int main() 2) int main(int argc, char *argv[]) 3) They both work
what are the static variables
8 Answers HCL, iFlex, TCS, Wipro,
write a program that accepts 3 numbers from the user. dispaly the values in a descending order.
What are the uses of null pointers?
Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer