I am developing a program for calculating the integral function. Why everything is good in the debug build, but the result is wrong in the release?
1
Expert's answer
2010-08-05T10:15:03-0400
Perhaps you have uninitialized variables. In some compilers in the debug build all the variables are initialized to zero, and all pointers – to a NULL pointer, which is not done in the release in order to optimize the execution time.
Comments
Leave a comment