1
Reply

what is the difference between debug and release.

sujit prusty

sujit prusty

14y
4.2k
0
Reply

    In debug mode, a symbolic debugging information in M/S format is produced, that helps to debug the code.Also it does not take optimization to execute the code in to the consideration.It takes more memory because of information in symbolic pattern.


    In Release mode, no debugging information is present,hence took less memory. Also the execution of code remains optimized.