WHAT IS DIFFERENT BETWEN RELEASE MODE & DEBUGGING MODE
Answers were Sorted based on User's Feedback
Answer / gautam
debug mode built always comes up with debug info and it's
for diagnostic purpose only. so size will be bigger and you
can debug it with the help of visual studio and with some
diagnostic apis/macros.
once you are sure there is nothing to debug, need to make a
final built (release mode). it will remove debug info,
strip off debug/diagnostic specific calls from your code.
so, size will be small, optimized, faster(hopefully) and
ready to ship.
| Is This Answer Correct ? | 10 Yes | 0 No |
Answer / sachin mahajan
Size of exe is more in Debug than in release and hence
release is faster.
Debug contains debugging symbols information and
Release does not have.
| Is This Answer Correct ? | 9 Yes | 2 No |
Answer / prakash
In release mode all data are clear and you can save it,but
in debugging mode lock all data when not change or correct
data insert in that line or data.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / aditya
i think there us more to release & debug modes than just
size of .exe files & data locking....for eg while making a
dll only a release mode can be used....can anyone be a
little bit more clear....please.
| Is This Answer Correct ? | 2 Yes | 0 No |
Explain Doc/View architecture
In VC++ How to transfer between one exe to another exe while running..
1) How do you Destroy a Dialog Box ?
Q1. A. What is unary operator? List out the different operators involved in the unary operator. B. What is an adjust field format flag? Q2. A. Distinguish between a # include and #define. B. Can a list of string be stored within a two dimensional array? Q3. A. Explain how a pointer to function can be declared in C++? B. List the merits and demerits of declaring a nested class in C++? Q4. A. What are the syntactic rules to be avoid ambiguity in multiple inheritence? B. Explain the operation of overloading of an assignment operator. Q5. A. Explain how the virtual base class is different from the conventional base classes of the opps. B. Explain how an exception handler is defined and invoked in a Program. Q6. A. What is a binary file? List the merits and demerits of the binary file usagein C++. B. Write short notes on Text Manipulation Routines. C. Write bites in Turbo c++ Header ("Include") Files.
What is mfc class hierarchy?
what is the use of AFX_MANAGE_STATE ?
1)To Remove WS_MINIMIZEBOX in a Frame ?
1)How to load an icon on a button as Dynamically ?
what is the difference between compiling and building?
how many types of messages are their
How can update edit control data of an executing application from other application?
Can you explaing the relashionship between document,frame and view ?