I have an sln file for compiling c source code. when I compile that in VS2008 in release mode it takes around 4 minutes to compile the code. But in debug mode it take only 1 minute to compile the code. I didn't understand the difference in Release mode and debug mode.
Can anyone help me in this?
The optimizer is turned on by default in the Release configuration. Yes, it needs time to do its job. The linker is also not doing incremental links anymore, that can make a big difference.
You never really care about this, release builds are something you do when you're done or leave up to a build server.