What is difference betwwen /MD and /MDD( multi threaded debug dll ) in c/c++->code generation
propertis of visual studio ....
They specify which runtime to use. Both use mmulti-threaded dynamic (DLL) runtimes, but the /MDD version uses the debug version and also defines the _DEBUG symbol for you. See this MSDN page for details.